Skip to content

Latest commit

 

History

History
23 lines (22 loc) · 345 Bytes

File metadata and controls

23 lines (22 loc) · 345 Bytes

Getting Started

Install Node Dependencies

npm install

Activate Python Virtual Enviroment

python -m venv venv

venv\Scripts\activate

Install Python Dependencies

pip install -r requirements.txt

To run the frontend development server

npm run dev

To run the backend server

uvicorn backend.app:app --reload