cookiecutter-django/{{cookiecutter.project_slug}}/env.example

44 lines
1.0 KiB
Plaintext
Raw Normal View History

2016-06-09 08:53:21 +03:00
# PostgreSQL
POSTGRES_PASSWORD=!!!SET POSTGRES_PASSWORD!!!
POSTGRES_USER=!!!SET POSTGRES_USER!!!
CONN_MAX_AGE=
2015-07-16 18:43:02 +03:00
2017-08-11 12:16:15 +03:00
# Domain name, used by caddy
DOMAIN_NAME={{ cookiecutter.domain_name }}
2016-06-09 08:53:21 +03:00
# General settings
# DJANGO_READ_DOT_ENV_FILE=True
DJANGO_ADMIN_URL=
2015-07-16 18:43:02 +03:00
DJANGO_SETTINGS_MODULE=config.settings.production
DJANGO_SECRET_KEY=!!!SET DJANGO_SECRET_KEY!!!
DJANGO_ALLOWED_HOSTS=.{{ cookiecutter.domain_name }}
2016-06-09 08:53:21 +03:00
# AWS Settings
2015-07-16 18:43:02 +03:00
DJANGO_AWS_ACCESS_KEY_ID=
DJANGO_AWS_SECRET_ACCESS_KEY=
DJANGO_AWS_STORAGE_BUCKET_NAME=
2016-06-09 08:53:21 +03:00
# Used with email
2015-07-16 18:43:02 +03:00
DJANGO_MAILGUN_API_KEY=
DJANGO_SERVER_EMAIL=
MAILGUN_SENDER_DOMAIN=
2016-06-09 08:53:21 +03:00
# Security! Better to use DNS for this task, but you can use redirect
DJANGO_SECURE_SSL_REDIRECT=False
2016-06-09 08:53:21 +03:00
# django-allauth
DJANGO_ACCOUNT_ALLOW_REGISTRATION=True
2016-06-05 20:47:07 +03:00
{% if cookiecutter.use_sentry_for_error_reporting == 'y' -%}
2016-06-09 08:53:21 +03:00
# Sentry
2015-11-07 21:04:19 +03:00
DJANGO_SENTRY_DSN=
{% endif %}
2015-11-17 10:27:58 +03:00
{% if cookiecutter.use_opbeat == 'y' -%}
DJANGO_OPBEAT_ORGANIZATION_ID=
DJANGO_OPBEAT_APP_ID=
DJANGO_OPBEAT_SECRET_TOKEN=
2015-11-17 10:27:58 +03:00
{% endif %}
{% if cookiecutter.use_compressor == 'y' -%}
COMPRESS_ENABLED=
{% endif %}