Skip to content

Latest commit

 

History

History
52 lines (33 loc) · 557 Bytes

quickstart.md

File metadata and controls

52 lines (33 loc) · 557 Bytes

Requirements

  • python 3
  • pip
  • node.js
  • npm

Installation

Frontend

cd starter-frontend
npm install

Backend

cd starter-backend
pip install "fastapi[all]"

Running

Frontend

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

Backend

uvicorn main:app --reload