2026-07-06 13:11:37 +05:30
|
|
|
# Aero Resolve - Frontend
|
2026-07-21 10:38:09 +00:00
|
|
|
test123
|
2026-07-06 13:11:37 +05:30
|
|
|
|
|
|
|
|
This is the frontend application built with React and Vite.
|
|
|
|
|
|
|
|
|
|
## 🚀 Getting Started
|
|
|
|
|
|
|
|
|
|
### Prerequisites
|
|
|
|
|
- Node.js (v18+)
|
|
|
|
|
|
|
|
|
|
### Installation
|
|
|
|
|
1. Navigate to the frontend directory (if you aren't already here):
|
|
|
|
|
```bash
|
|
|
|
|
cd frontend
|
|
|
|
|
```
|
|
|
|
|
2. Install the dependencies using npm:
|
|
|
|
|
```bash
|
|
|
|
|
npm install
|
|
|
|
|
```
|
|
|
|
|
|
2026-07-09 14:21:12 +05:30
|
|
|
### Running the Application
|
|
|
|
|
|
|
|
|
|
Start the local development server for your desired environment:
|
2026-07-06 13:11:37 +05:30
|
|
|
```bash
|
2026-07-09 14:21:12 +05:30
|
|
|
# Development
|
2026-07-06 13:11:37 +05:30
|
|
|
npm run dev
|
2026-07-09 14:21:12 +05:30
|
|
|
|
|
|
|
|
# Local
|
|
|
|
|
npm run local
|
|
|
|
|
|
|
|
|
|
# Test
|
|
|
|
|
npm run test
|
|
|
|
|
|
|
|
|
|
# UAT
|
|
|
|
|
npm run uat
|
2026-07-06 13:11:37 +05:30
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Build for Production
|
2026-07-09 14:21:12 +05:30
|
|
|
|
|
|
|
|
To build the application for a specific environment:
|
2026-07-06 13:11:37 +05:30
|
|
|
```bash
|
2026-07-09 14:21:12 +05:30
|
|
|
# Development
|
|
|
|
|
npm run build:dev
|
|
|
|
|
|
|
|
|
|
# Local
|
|
|
|
|
npm run build:local
|
|
|
|
|
|
|
|
|
|
# Test
|
|
|
|
|
npm run build:test
|
|
|
|
|
|
|
|
|
|
# UAT
|
|
|
|
|
npm run build:uat
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Preview Built Application
|
|
|
|
|
|
|
|
|
|
To preview the production build locally:
|
|
|
|
|
```bash
|
|
|
|
|
# Development
|
|
|
|
|
npm run preview:dev
|
|
|
|
|
|
|
|
|
|
# Local
|
|
|
|
|
npm run preview:local
|
|
|
|
|
|
|
|
|
|
# Test
|
|
|
|
|
npm run preview:test
|
|
|
|
|
|
|
|
|
|
# UAT
|
|
|
|
|
npm run preview:uat
|
2026-07-06 13:11:37 +05:30
|
|
|
```
|
2026-07-21 14:49:05 +05:30
|
|
|
|
|
|
|
|
|
|
|
|
|
//this is dev
|