Skip to content
/ fastapi-template Public template

FastAPI based template application

Notifications You must be signed in to change notification settings

Synalytica/fastapi-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FastAPI template

Installation

  • Virtualenv:
pip3 install -r requirements.txt
  • Docker:
docker pull pk13055/fastapi-template:mongo
docker run -v $PWD/:/app -p 8080:8080 -d pk13055/fastapi-template:mongo

OR

git clone /this/repo
docker build -t image:tag .
docker run -v $PWD/:/app -p 8080:8080 -d image:tag