# Base url for the application. default=''
# BASE_URL=
# base url for static resources (ends with "/")
# default : /static/
# STATIC_URL=/static/
# The absolute path to the directory where collectstatic will collect static files for deployment. (https://docs.djangoproject.com/en/1.11/ref/settings/#std:setting-STATIC_ROOT)
# default: <path to irinotes repository clone>/run/web/static/
# STATIC_ROOT=
# base url for media resources (ends with "/")
# default : /media/
# MEDIA_URL=/media/
# Absolute filesystem path to the directory that will hold user-uploaded files (https://docs.djangoproject.com/en/1.11/ref/settings/#media-root)
# default: <path to irinotes repository clone>/run/web/media
# MEDIA_ROOT=
# Secret key for the application. cf. https://docs.djangoproject.com/en/1.11/ref/settings/#secret-key
# SECRET_KEY=ARANDOMSECRETKEY
# Debug the application. Default True
# DEBUG=<true|False>
# Comma separated values of authorized host. cf. https://docs.djangoproject.com/en/1.11/ref/settings/#allowed-hosts
# default: empty
# ALLOWED_HOSTS=127.0.0.1,localhost
# 12factor inspired DATABASE_URL environment variable cf.https://github.com/kennethreitz/dj-database-url
# examples: postgres://<user>:<password>@<host>:<port>/<db_name>
# examples: sqlite:////full/path/to/your/database/file.sqlite
# default: sqlite:///<path to irinotes repository clone>/run/db/db.sqlite3
# DATABASE_URL=sqlite:///<path to irinotes repository clone>/run/db/db.sqlite3
# path for the log file
# default: <path to irinotes repository clone>/run/log/log.txt
# LOG_FILE=
# log level one of CRITICAL, ERROR, WARNING, INFO, DEBUG, NOTSET. Default: ERROR
# LOG_LEVEL=DEBUG
# expiration delta for JWT tokens (in seconds)
# default: 3600
# JWT_EXPIRATION_DELTA=3600
# expiration refresh delta for JWT tokens (in seconds)
# default: 3600*24*7 = 604800
# JWT_REFRESH_EXPIRATION_DELTA=604800
# email backend c.f. https://docs.djangoproject.com/en/2.1/topics/email/#obtaining-an-instance-of-an-email-backend
# default: 'django.core.mail.backends.console.EmailBackend'
# EMAIL_BACKEND=django.core.mail.backends.console.EmailBackend
# email host
# default: localhost
# EMAIL_HOST=localhost
# email port (integer)
# default: 25
# EMAIL_PORT=25
# email host user
# default: None
# EMAIL_HOST_USER=
# email host password
# default: None
# EMAIL_HOST_PASSWORD=
# email use TLS
# default: False
# EMAIL_USE_TLS=False