2018-11-02 00:25:15 +00:00
|
|
|
; Use ${env:environment_variable} to use the value of an environment variable.
|
|
|
|
; If a variable is not set here, it will be loaded from defaults.ini.
|
|
|
|
|
2018-10-10 22:43:50 +00:00
|
|
|
; The global section contains settings that apply to the entire server
|
|
|
|
[global]
|
2018-11-02 00:25:15 +00:00
|
|
|
|
2018-12-01 15:28:37 +00:00
|
|
|
Debug=True
|
2018-11-02 00:25:15 +00:00
|
|
|
|
|
|
|
; Secret key - django secret key
|
2018-12-09 23:15:10 +00:00
|
|
|
SecretKey=^zv8@i2h!ko2lo=%ivq(9e#x=%q*i^^)6#4@(juzdx%&0c+9a0
|
2018-11-02 00:25:15 +00:00
|
|
|
|
|
|
|
; Database settings
|
|
|
|
; You can use any database engine supported by Django, as long as you add the required dependencies.
|
|
|
|
; Built-in engines: https://docs.djangoproject.com/en/2.1/ref/settings/#std:setting-DATABASE-ENGINE
|
|
|
|
; Others databases might be supported by installing the corect pip package.
|
|
|
|
|
2018-12-09 23:15:10 +00:00
|
|
|
DatabaseEngine=django.db.backends.sqlite3
|
2018-12-28 17:47:35 +00:00
|
|
|
DatabaseName=${DATA_DIR}/ytmanager.db
|
2018-11-02 00:25:15 +00:00
|
|
|
;DatabaseHost=
|
|
|
|
;DatabaseUser=
|
|
|
|
;DatabasePassword=
|
|
|
|
;DatabasePort=
|
|
|
|
|
|
|
|
; Database one-liner. If set, it will override any other Database* setting.
|
|
|
|
; Documentation: https://github.com/kennethreitz/dj-database-url
|
|
|
|
;DatabaseURL=sqlite:////full/path/to/your/database/file.sqlite
|
|
|
|
|
|
|
|
; Log settings, sets the log file location and the log level
|
2018-12-09 23:15:10 +00:00
|
|
|
LogLevel=INFO
|