added structured api endpoints and done some refactoring
Some checks failed
Python formatting PEP8 / Python-PEP8 (push) Failing after 18s

This commit is contained in:
Finn Christiansen 2023-08-12 00:20:51 +02:00
parent a689b1c56d
commit d8607212da
15 changed files with 362 additions and 57 deletions

0
app/db/__init__.py Normal file
View file

15
app/db/database.py Normal file
View file

@ -0,0 +1,15 @@
from sqlalchemy import create_engine
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import sessionmaker
import config
SQLALCHEMY_DATABASE_URL = config.Settings.DATABASE_URL
# SQLALCHEMY_DATABASE_URL = "postgresql://user:password@postgresserver/db"
print(SQLALCHEMY_DATABASE_URL)
engine = create_engine(
SQLALCHEMY_DATABASE_URL, connect_args={"check_same_thread": False}
)
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
Base = declarative_base()