# Install dependencies
make install
# Run the FastAPI app
make run
# Activate virtual environment shell
pipenv shell
# Build the Docker image
make docker-build
# Run the Docker container
make docker-run
You can access the Swagger UI at http://localhost:8000/docs.
make run
- Run the FastAPI app.make shell
- Activate the virtual environment shell.make test
- Run the tests.make format
- Format the code usingblack
.make lint
- Lint the code usingflake8
.make clean
- Clean up bytecode files and temporary files.make docker-build
- Build the Docker image.make docker-run
- Run the Docker container.make export-requirements
- Generaterequirements.txt
.