- python 3
- pip
- node.js
- npm
cd starter-frontend
npm installcd starter-backend
pip install "fastapi[all]"For development:
cd starter-frontend
npm startFor production*:
cd starter-frontend
npm run local-deploynote: This builds your front end and serves it from the backend at http://localhost:8000/static/index.html
uvicorn main:app --reload