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