- Frontend: React app (Vite)
- Backend: Python (Flask)
- Navigate to the
Frontenddirectory:cd Frontend - Install dependencies:
npm install
- Start the development server:
The app will be available at the local address shown in the terminal (usually http://localhost:5173).
npm run dev
- Navigate to the
Backenddirectory:cd Backend - (Optional) Create and activate a virtual environment.
- Install dependencies:
pip install -r requirements.txt
- Start the backend server:
The backend will run on the port specified in
python app.py
app.py(commonly http://localhost:5000).
Update this README with more details as your project evolves.