Compare commits

1 Commits

Author SHA1 Message Date
muszyn 903818307f testing git 2025-12-06 10:56:28 -05:00
2 changed files with 1 additions and 0 deletions
+1
View File
@@ -6,6 +6,7 @@ from dotenv import load_dotenv
env = load_dotenv()
DATABASE_URL = os.getenv("DATABASE_URL", "")
print(DATABASE_URL)
engine = create_engine(DATABASE_URL)
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
Base = declarative_base()
View File