Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 274 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 274 Bytes

python-fastapi-app

Command

  • install package
pip install -r requirements.txt
  • start server
uvicorn server.main:app --reload
  • docker build
docker build -t server .
  • docker start
docker run -dp 80:80 server