You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
499 B
17 lines
499 B
# Patří do hra/config.py
|
|
|
|
# Druh webu (devel/test/pub), z toho CSS třída elementu <header>
|
|
WEB_FLAVOR = 'devel'
|
|
|
|
SQLALCHEMY_DATABASE_URI = f"postgresql:///ksp_strathra_{WEB_FLAVOR}"
|
|
SQLALCHEMY_TRACK_MODIFICATIONS = False
|
|
SQLALCHEMY_ECHO = False
|
|
|
|
# Vytvořte pomocí python3 -c 'import secrets; print(secrets.token_hex(32))'
|
|
SECRET_KEY = "8aeffbdf14d441f40359708cbbae9b47926db8b08e4ea9e0cdf78071bee7b788"
|
|
|
|
SESSION_COOKIE_NAME = 'ksp_strathra__session'
|
|
|
|
|
|
# Nutné pro registraci
|
|
CAPTCHA = 'hroch'
|
|
|