mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
32 lines
672 B
INI
32 lines
672 B
INI
USER_APP_NAME="ContentDB"
|
|
SERVER_NAME="localhost:5123"
|
|
BASE_URL="http://" + SERVER_NAME
|
|
|
|
SECRET_KEY="changeme"
|
|
WTF_CSRF_SECRET_KEY="changeme"
|
|
|
|
SQLALCHEMY_DATABASE_URI = "postgres://contentdb:password@db:5432/contentdb"
|
|
|
|
GITHUB_CLIENT_ID = ""
|
|
GITHUB_CLIENT_SECRET = ""
|
|
|
|
REDIS_URL='redis://redis:6379'
|
|
CELERY_BROKER_URL='redis://redis:6379'
|
|
CELERY_RESULT_BACKEND='redis://redis:6379'
|
|
|
|
USER_ENABLE_USERNAME = True
|
|
USER_ENABLE_REGISTER = False
|
|
USER_ENABLE_CHANGE_USERNAME = False
|
|
USER_ENABLE_EMAIL = False
|
|
|
|
MAIL_UTILS_ERROR_SEND_TO = [""]
|
|
|
|
UPLOAD_DIR="/var/cdb/uploads/"
|
|
THUMBNAIL_DIR="/var/cdb/thumbnails/"
|
|
|
|
TEMPLATES_AUTO_RELOAD = True
|
|
|
|
LANGUAGES = {
|
|
'en': 'English',
|
|
}
|