-
cd frontend
-
Install dependencies
npm i
-
To run http-server
npm start
-
cd backend
-
Create Python virtual environment
python3 -m venv .venv
-
Activate Python virtual environment
source .venv/bin/activate
-
Install dependencies
pip install -r requirements.txt
-
To run FastAPI backend
fastapi dev main.py