; 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. ; The global section contains settings that apply to the entire server [global] Debug=True ; Secret key - django secret key SecretKey=^zv8@i2h!ko2lo=%ivq(9e#x=%q*i^^)6#4@(juzdx%&0c+9a0 ; 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. DatabaseEngine=django.db.backends.sqlite3 DatabaseName=${DATA_DIR}/ytmanager.db ;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 LogLevel=INFO