You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
3.2 KiB
80 lines
3.2 KiB
# A uniquely secret key |
|
# https://docs.djangoproject.com/en/dev/ref/settings/#secret-key |
|
SECRET_KEY=@wb=#(f4uc0l%e!5*eo+aoflnxb(@!l9!=c5w=4b+x$=!8&vy%' |
|
|
|
# Disable debug in production |
|
# https://docs.djangoproject.com/en/dev/ref/settings/#debug |
|
DEBUG=False |
|
|
|
# Allowed hosts that Django does server. Use comma separated list Take care when NGINX is proxying in front of Django |
|
# https://docs.djangoproject.com/en/dev/ref/settings/#allowed-hosts |
|
ALLOWED_HOSTS=127.0.0.1,localhost |
|
|
|
# All internal IPS for Django. Use comma separated list |
|
# https://docs.djangoproject.com/en/dev/ref/settings/#internal-ips |
|
INTERNAL_IPS=127.0.0.1 |
|
|
|
# Enter the database url connection. Enter all parts even the port numbers: https://github.com/jacobian/dj-database-url |
|
# By default a local sqlite3 database is used. |
|
DATABASE_URL=sqlite:///db.sqlite3 |
|
|
|
# The location on disk where the static files will be placed during deployment. Setting is required |
|
# https://docs.djangoproject.com/en/dev/ref/settings/#static-root |
|
STATIC_ROOT= |
|
|
|
# Enter the default timezone for the visitors when it is not known. |
|
# https://docs.djangoproject.com/en/dev/ref/settings/#std:setting-TIME_ZONE |
|
TIME_ZONE=Europe/Amsterdam |
|
|
|
# Email settings |
|
# https://docs.djangoproject.com/en/dev/ref/settings/#email-host |
|
# EMAIL_HOST= |
|
|
|
# Email user name |
|
# https://docs.djangoproject.com/en/dev/ref/settings/#email-host-user |
|
# EMAIL_HOST_USER= |
|
|
|
# Email password |
|
# https://docs.djangoproject.com/en/dev/ref/settings/#email-host-password |
|
# EMAIL_HOST_PASSWORD= |
|
|
|
# Email server port number to use. Default is 25 |
|
# https://docs.djangoproject.com/en/dev/ref/settings/#email-port |
|
# EMAIL_PORT= |
|
|
|
# Does the email server supports TLS? |
|
# https://docs.djangoproject.com/en/dev/ref/settings/#email-use-tls |
|
# EMAIL_USE_TLS= |
|
|
|
https://docs.djangoproject.com/en/dev/ref/settings/#default-from-email |
|
DEFAULT_FROM_EMAIL=Do not reply<no-reply@rug.nl> |
|
|
|
# The sender address. This needs to be one of the allowed domains due to SPF checks |
|
# The code will use a reply-to header to make sure that replies goes to the researcher and not this address |
|
EMAIL_FROM_ADDRESS=Do not reply<no-reply@rug.nl> |
|
|
|
# The Redis server is used for background tasks. Enter the variables below. Leave password empty if authentication is not enabled. |
|
# The hostname or IP where the Redis server is running. Default is localhost |
|
REDIS_HOST=localhost |
|
|
|
# The Redis port number on which the server is running. Default is 6379 |
|
REDIS_PORT=6379 |
|
|
|
# The Redis password when authentication is enabled |
|
# REDIS_PASSWORD= |
|
|
|
# The amount of connections to be made inside a connection pool. Default is 10 |
|
REDIS_CONNECTIONS=10 |
|
|
|
# Enter the full path to the Webbased file uploading without the Study ID part. The Study ID will be added to this url based on the visitor. |
|
DROPOFF_BASE_URL=http://localhost:8000/dropoffs/ |
|
|
|
# Enter the full url to the NGINX service that is in front of the TUSD service. By default that is http://localhost:1090 |
|
DROPOFF_UPLOAD_HOST=http://localhost:1090 |
|
|
|
# Which file extensions are **NOT** allowed to be uploaded. By default the extensions exe,com,bat,lnk,sh are not allowed |
|
DROPOFF_NOT_ALLOWED_EXTENSIONS=exe,com,bat,lnk,sh |
|
|
|
# Sentry settings |
|
# Enter the full Sentry DSN string. This should contain a key and a project |
|
SENTRY_DSN= |