Better integration of sqlite3 database

This commit is contained in:
GotthardG
2024-11-02 00:54:37 +01:00
parent 48cd233231
commit a01114a178
18 changed files with 835 additions and 582 deletions

7
backend/app/init_db.py Normal file
View File

@ -0,0 +1,7 @@
from app.database import init_db
def initialize_database():
init_db()
if __name__ == "__main__":
initialize_database()