Files
smokee2ei1771368759/smokee2ei1771368759/settings/env/dev.py
Mandel Dashboard da0d4c7dac initial commit
2026-02-17 23:52:41 +01:00

22 lines
643 B
Python

from ..base import * # pylint:disable=W0401,W0614
try:
from smokee2ei1771368759.json import * # pylint:disable=W0401,W0614,E0611,E0401
except ModuleNotFoundError:
pass
DEBUG = False
STATIC_ROOT = "/srv/www/smokee2ei1771368759/static/"
MEDIA_ROOT = "/srv/www/smokee2ei1771368759/media/"
PRIVATE_MEDIA_ROOT = "/srv/www/smokee2ei1771368759/private/"
ALLOWED_HOSTS = ["*"]
# Force mail to console
EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend"
EDEN_URL = ["https://search.mandelblog.com:9200"]
# pylint: disable=E0602
WAGTAILSEARCH_BACKENDS["default"]["URLS"] = EDEN_URL
OSCAR_ELASTICSEARCH_SERVER_URLS = EDEN_URL