Final push: Correct directory structure and content

This commit is contained in:
Agent
2026-05-17 10:04:27 +00:00
commit 203518ac66
5 changed files with 40 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker, declarative_base
SQLALCHEMY_DATABASE_URL = "postgresql://user:pass@db:5432/notes"
engine = create_engine(SQLALCHEMY_DATABASE_URL)
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
Base = declarative_base()