-
Create a virtual environment:
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
-
Install dependencies:
cd backend pip install -r requirements.txt
-
Set up environment variables:
- Copy
.env.example
to.env
- Update values as needed
- Copy
-
Run the server:
uvicorn app.main:app --reload
-
Install dependencies:
cd frontend npm install
-
Start the development server:
npm start