This is a simple API that I use to store my personal data. It is a work in progress and I will be adding more features as I go along.
- Clone the repository
- Run
docker-compose up -d
- Go to
localhost:8000
to see the API
- Clone the repository
- Run
pip install -r requirements.txt
with Python 3.11 - Run
uvicorn main:app --reload
- Go to
localhost:8000
to see the API
To create a migration, run alembic revision --autogenerate -m "message"
.
To apply a migration, run alembic upgrade head
.