mirror of
https://github.com/Fluffy-Bean/GameExpo23.git
synced 2025-05-14 14:22:16 +00:00
15 lines
282 B
Python
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"
|