mirror of https://gitlab.federez.net/re2o/re2o
1 changed files with 20 additions and 0 deletions
@ -0,0 +1,20 @@ |
|||
SECRET_KEY = 'SUPER_SECRET' |
|||
|
|||
DB_PASSWORD = 'SUPER_SECRET' |
|||
|
|||
# SECURITY WARNING: don't run with debug turned on in production! |
|||
DEBUG = False |
|||
|
|||
ALLOWED_HOSTS = [] |
|||
|
|||
DATABASES = { |
|||
'default': { |
|||
'ENGINE': 'django.db.backends.mysql', |
|||
'NAME': 're2o', |
|||
'USER': 're2o', |
|||
'PASSWORD': DB_PASSWORD, |
|||
'HOST': 'localhost', |
|||
} |
|||
} |
|||
|
|||
ALLOWED_EXTENSIONS = ['.example'] |
|||
Loading…
Reference in new issue