refactor(backend): refactor project, add database migrations support

This commit is contained in:
2025-09-24 19:42:04 +02:00
parent b880670929
commit 3c8ad5f74f
33 changed files with 408 additions and 77 deletions

6
upgrade_database.sh Normal file
View File

@@ -0,0 +1,6 @@
#!/bin/bash
# Script to upgrade the database using Alembic
cd backend || { echo "Directory 'backend' does not exist"; exit 1; }
alembic upgrade head