- Python 3.10.9
make venv
source venv/bin/activate
make install
NOTE use only when adding a new dependency
make compile
This following command will start a local postgres instance listening on port 5432
.
make db
To stop the local postgres instance, run the following command
make db-stop
If you want to connect to the local postgres instance, run the following command.
MODE=production make run
otherwise, the app will run with an in-memory sqlite database.
make run
make test
make lint