Fix __init__ file

Style code with Black
This commit is contained in:
Michał Gdula 2023-05-09 16:46:12 +03:00
parent e7bbb02aba
commit dcc9247ba0
8 changed files with 84 additions and 62 deletions

View file

@ -1,20 +1,24 @@
import os
# Purely to make the code a bit more readable
def env(key):
return os.getenv(key)
SECRET_KEY = env('FLASK_KEY')
BEARER_TOKEN = env('BEARER_TOKEN')
user = env('DB_USER')
password = env('DB_PASSWORD')
host = env('DB_HOST')
database = env('DB_NAME')
SECRET_KEY = env("FLASK_KEY")
BEARER_TOKEN = env("BEARER_TOKEN")
SQLALCHEMY_DATABASE_URI = f"postgresql+psycopg2://{user}:{password}@{host}:5432/{database}"
user = env("DB_USER")
password = env("DB_PASSWORD")
host = env("DB_HOST")
database = env("DB_NAME")
SQLALCHEMY_DATABASE_URI = (
f"postgresql+psycopg2://{user}:{password}@{host}:5432/{database}"
)
SQLALCHEMY_TRACK_MODIFICATIONS = False
SQLALCHEMY_POOL_RECYCLE = 621
MIGRATION_DIR = '/data/storage/migrations'
INSTANCE_DIR = '/data/storage/instance'
MIGRATION_DIR = "/data/storage/migrations"
INSTANCE_DIR = "/data/storage/instance"