forked from django/djangoproject.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed django#1817 -- Added tracdb container
Added 'tracdb' container to compose file. Simplified docker settings to remove duplication. Added support for 'secrets.json' in the docker dev stage. Added the 'DJANGOPROJECT_DATA_DIR' env var to tox.
- Loading branch information
1 parent
48f434d
commit b99166a
Showing
4 changed files
with
46 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,8 @@ | ||
from .common import * # noqa | ||
|
||
DATABASES = { | ||
"default": { | ||
"ENGINE": os.environ.get("SQL_ENGINE"), | ||
"NAME": os.environ.get("SQL_DATABASE"), | ||
"USER": os.environ.get("SQL_USER"), | ||
"PASSWORD": os.environ.get("SQL_PASSWORD"), | ||
"HOST": os.environ.get("SQL_HOST"), | ||
"PORT": os.environ.get("SQL_PORT"), | ||
} | ||
} | ||
|
||
SECRET_KEY = os.environ.get("SECRET_KEY") | ||
|
||
SILENCED_SYSTEM_CHECKS = SILENCED_SYSTEM_CHECKS + [ | ||
"django_recaptcha.recaptcha_test_key_error" # Default test keys for development. | ||
] | ||
|
||
ALLOWED_HOSTS = [".localhost", "127.0.0.1", "www.127.0.0.1"] | ||
|
||
LOCALE_MIDDLEWARE_EXCLUDED_HOSTS = ["docs.djangoproject.localhost"] | ||
|
||
DEBUG = True | ||
THUMBNAIL_DEBUG = DEBUG | ||
|
||
CACHES = { | ||
"default": { | ||
"BACKEND": "django.core.cache.backends.locmem.LocMemCache", | ||
"LOCATION": "trololololol", | ||
}, | ||
"docs-pages": { | ||
"BACKEND": "django.core.cache.backends.locmem.LocMemCache", | ||
"LOCATION": "docs-pages", | ||
}, | ||
} | ||
|
||
CSRF_COOKIE_SECURE = False | ||
|
||
EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend" | ||
|
||
MEDIA_ROOT = str(DATA_DIR.joinpath("media_root")) | ||
|
||
SESSION_COOKIE_SECURE = False | ||
|
||
STATIC_ROOT = str(DATA_DIR.joinpath("static_root")) | ||
|
||
# Docs settings | ||
DOCS_BUILD_ROOT = DATA_DIR.joinpath("djangodocs") | ||
from .dev import * # noqa | ||
|
||
# django-hosts settings | ||
if parent_host := SECRETS.get("parent_host"): | ||
PARENT_HOST = parent_host | ||
|
||
PARENT_HOST = "localhost:8000" | ||
|
||
# django-push settings | ||
|
||
PUSH_SSL_CALLBACK = False | ||
|
||
# Enable optional components | ||
|
||
if DEBUG: | ||
try: | ||
import debug_toolbar # NOQA | ||
except ImportError: | ||
pass | ||
else: | ||
INSTALLED_APPS.append("debug_toolbar") | ||
INTERNAL_IPS = ["127.0.0.1"] | ||
MIDDLEWARE.insert( | ||
MIDDLEWARE.index("django.middleware.common.CommonMiddleware") + 1, | ||
"debug_toolbar.middleware.DebugToolbarMiddleware", | ||
) | ||
MIDDLEWARE.insert( | ||
MIDDLEWARE.index("debug_toolbar.middleware.DebugToolbarMiddleware") + 1, | ||
"djangoproject.middleware.CORSMiddleware", | ||
) | ||
# debug-toolbar settings | ||
INTERNAL_IPS = SECRETS.get("internal_ips", ["127.0.0.1"]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters