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