GameExpo23/DV8-Expo/website/config.py

15 lines
282 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")
SECRET_KEY = "dev"
SQLALCHEMY_DATABASE_URI = "sqlite:///site.db"
MIGRATION_DIR = "/data/storage/migrations"
INSTANCE_DIR = "/data/storage/instance"