Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 679 Bytes

File metadata and controls

35 lines (25 loc) · 679 Bytes
# FastAPI Base A base project for FastAPI with some basic configurations and a simple example. This project uses [Poetry](https://python-poetry.org/) for dependency management, Docker for containerization, and [Uvicorn](https://www.uvicorn.org/) as the ASGI server. # Install There is a `Makefile` with some useful commands to help you with the project setup. Running the following command will build the project and install the dependencies. ```bash make build ``` or you can run: ```bash docker-compose build ``` # Running You can run: ```bash make up ``` or just: ```bash docker-compose up ``` # fastapi-base