It's a fastapi template for quickly creating a skeleton for your project.
edit your .env
file and run this command on your terminal
docker-compose up --build
or using
make
by runningmake build-container
docker exec -it fastapi aerich upgrade
if
migrations/models/*.sql
not exist, runmake db-init
dependencies are managed via pip-compile
please create new python virtualenv and install dependencies.
make dep-sync
if you wanna add new dependencies,
add them to requirements*.in
and run this command
make dep-update
if you wanna lock dependencies, run this command
make dep-lock