Skip to content

Files

Latest commit

 

History

History

backend

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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