Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 783 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 783 Bytes

A User management API with FastAPI

The project uses:

Data models

The database schemas are described in the ums.models module.

Development start-up

The database can be started with:

./scripts/test_db.sh up

This will spin up a Postgres container with a docker_test_ums_data volume attached to it for the DB data. It can then be initialised with:

poetry run python3 db/init_db.py

The app starts with:

poetry run python3 main.py