diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2013-03-17 18:21:05 +0100 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2013-03-17 19:21:36 +0100 |
| commit | 912b5d2a6bc78067d6a7e130f10514c51bd1a58f (patch) | |
| tree | 285a9d34380d2422ec9ae76b9ca729a4586af78c /django/conf/project_template/project_name/settings.py | |
| parent | f403653cf146384946e5c879ad2a351768ebc226 (diff) | |
Fixed #19697 -- Added a deployment checklist.
Diffstat (limited to 'django/conf/project_template/project_name/settings.py')
| -rw-r--r-- | django/conf/project_template/project_name/settings.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/django/conf/project_template/project_name/settings.py b/django/conf/project_template/project_name/settings.py index d46f327922..972065467f 100644 --- a/django/conf/project_template/project_name/settings.py +++ b/django/conf/project_template/project_name/settings.py @@ -14,10 +14,9 @@ BASE_DIR = os.path.dirname(os.path.dirname(__file__)) # Quick-start development settings - unsuitable for production +# See https://docs.djangoproject.com/en/{{ docs_version }}/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! -# Hardcoded values can leak through source control. Consider loading -# the secret key from an environment variable or a file instead. SECRET_KEY = '{{ secret_key }}' # SECURITY WARNING: don't run with debug turned on in production! @@ -25,8 +24,6 @@ DEBUG = True TEMPLATE_DEBUG = True -# Hosts/domain names that are valid for this site; required if DEBUG is False -# See https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/#allowed-hosts ALLOWED_HOSTS = [] |
