first commit of backend app

This commit is contained in:
Andreas Köpf
2022-12-13 10:52:18 +01:00
parent bee1e52e39
commit 0767b2064e
31 changed files with 819 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
from sqlmodel import create_engine
from app.config import settings
engine = create_engine(settings.DATABASE_URI)