13 lines
286 B
Markdown
13 lines
286 B
Markdown
# TODO Backend
|
|
|
|
Built using fastapi.
|
|
|
|
## Database Migrations
|
|
|
|
You must run database migrations after first deploying the database, by running
|
|
|
|
```bash
|
|
sudo docker exec -w /app/todo/database -it todo-backend alembic upgrade head
|
|
```
|
|
|
|
once you have launched the `todo-backend`-container.
|