Skip to content

ProFastCode/FastAPI_Template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Sep 22, 2024
77902bc · Sep 22, 2024
Sep 22, 2024
Aug 2, 2024
May 28, 2024
Aug 2, 2024
Feb 9, 2024
Jul 2, 2024
Jan 9, 2024
Aug 10, 2024
Aug 2, 2024
May 28, 2024
Aug 16, 2024
Sep 22, 2024
Sep 22, 2024

Repository files navigation

FastAPI

Create a .env file based on .env.dist and make all the necessary customizations

To run the application in a docker container, run the command

docker-compose up -d

To run the application without a docker container, complete follow these steps

  1. Install dependencies.

    poetry install or pip install -r requirements.txt

  2. Run application.

    poetry run fastapi dev app or make dev

Make documentation

make help