GameExpo23/DV8-Expo/website/config.py

13 lines
260 B
Python

import os
# Purely to make the code a bit more readable
def env(key):
return os.getenv(key)
SECRET_KEY = env("FLASK_KEY")
SQLALCHEMY_DATABASE_URI = 'sqlite:///site.db'
MIGRATION_DIR = "/data/storage/migrations"
INSTANCE_DIR = "/data/storage/instance"