Complete user authentication support, with sample endpoints to handle users and create items in a per user ToDo list.
- User registration and login using username (email) and password (OAuth2) to create the user and generate access tokens.
- User registration and login using Google credentials to create the user and generate access tokens.
- Email account verification and password recovery.
- Refresh tokens support.
- Protected endpoints.
- Interactive API documentation (provided by Swagger UI).
- 100% test coverage (
app/api/
). - Python formatting and styling using black, isort and flake8.
- Frontend using Vue available here.
- FastAPI.
- SQLite.
- PostgreSQL.
- SQLAlchemy.
- Pytest.
- Factory Boy.
- Docker.
- Kubernetes.
- Black.
- Isort.
- Flake8.
- Pre-commit hook.
- Github Actions.
With or without Docker, the proper environment variables must be set before running the server. They can be externally set or a .env
file can be used (see example.env
for reference). All the env variables have reasonable default values.
The following commands must be run from the top level directory.
Locally, the environment variable ENVIRONMENT
must be set to test
, to use SQLite instead of PostgreSQL.
$ pip install -r requirements.txt
$ ENVIRONMENT=test uvicorn app.main:app
The server is now running at http://127.0.0.1:8000
. The interactive API docs can be accessed from http://127.0.0.1:8000/docs
.
$ docker compose up -d
The server is now running at http://127.0.0.1:80
. The interactive API docs can be accessed from http://127.0.0.1:80/docs
. The pgAdmin platform can be accessed from http://127.0.0.1:5050
, using email = [email protected]
and password = admin
to login (they are defined in the docker-compose.yml
file).
To run the app in a single-node local Kubernetes cluster (using minikube), it is first required to update the existing YAML files in the /kubernetes
directory:
- Change the value of
spec.template.spec.containers.image
of theDeployment
resource definition infastapi_app.yaml
, to use your own uploaded image in Docker Hub. - Set the path that will be used in the local machine to persist the database data, updating the value of
spec.hostPath.path
of thePersistentVolume
resource definition inpostgres_db.yaml
.
Once the files have been updated, the following commands must be run to start the cluster and apply the desired configuration:
$ cd kubernetes
$ minikube start
$ kubectl apply -f=environment.yaml
$ kubectl apply -f=postgres_db.yaml
$ kubectl apply -f=fastapi_app.yaml
If all the resources are successfully created, then the command $ minikube service fastapi-service
can be used to get the URL to access the app.
Finally, the command $ minikube delete --all
can be used to delete the whole cluster.
The following commands must be run from the top level directory.
$ pip install -r requirements.txt
$ pip install -r dev_requirements.txt
$ python -m pytest app/tests/ -v --cov=app/api