Files
smokefinal1771393652/smokefinal1771393652/settings/env/dev.py
2026-02-18 06:47:34 +01:00

22 lines
647 B
Python

from ..base import * # pylint:disable=W0401,W0614
try:
from smokefinal1771393652.json import * # pylint:disable=W0401,W0614,E0611,E0401
except ModuleNotFoundError:
pass
DEBUG = False
STATIC_ROOT = "/srv/www/smokefinal1771393652/static/"
MEDIA_ROOT = "/srv/www/smokefinal1771393652/media/"
PRIVATE_MEDIA_ROOT = "/srv/www/smokefinal1771393652/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