Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 745 Bytes

Readme.md

File metadata and controls

32 lines (21 loc) · 745 Bytes

Python API Boilerplate - FastApi

FastApi Documentation Read more

Features

  • Automatic documentation using swagger docs or Redoc
  • Python types Read More
  • Hot reaload, just keep coding and the server will restart itself!
  • Remote Debugging

Running the code

You should have docker and docker compose istalled. When starting the application will search for a .env file. If you don't have one you can copy the development.env as a base.

To start you development environment just run :

  docker-compose up

Or if you want to run the container in detached mode:

  docker-compose up -d

To stop it:

  docker-compose down