Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 535 Bytes

File metadata and controls

26 lines (17 loc) · 535 Bytes

Fastapi web server boilerplate

Env variables

  • DB_URL - url string for pg database
  • DEBUG [Optional] - debug mode. False by default

Running

Option (a) - easy one

docker-compose up -d

Option (b) - not so easy one

From root (here):

  • DB_URL=<your db url> uvicorn main:app --reload --app-dir app

Prerequisites & development