sohampawar1866/FORTE
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
# Train Project Setup Guide ## Backend Setup[In cmd1] 1. Navigate to the backend folder ``` cd backend ``` 2. Create and activate virtual environment ``` python3 -m venv venv source venv/bin/activate ``` 3. Install dependencies ``` pip install -r requirements.txt ``` 4. Run the server ``` python3 server.py ``` ## Frontend Setup[In cmd2] 1. Navigate to the frontend folder ``` cd frontend ``` 2. Install dependencies ``` npm install ``` 3. Start development server ``` npm run dev ``` ## Quick Start Make sure to start the backend server first, then the frontend development server.