lemoncurry/lemoncurry/settings/test.py

9 lines
215 B
Python
Raw Permalink Normal View History

from .base import *
2023-08-10 02:52:37 -04:00
ALLOWED_HOSTS = ["*"]
SECURE_SSL_REDIRECT = False
2023-08-10 02:52:37 -04:00
STATICFILES_STORAGE = "django.contrib.staticfiles.storage.StaticFilesStorage"
2023-08-10 02:52:37 -04:00
MEDIA_URL = "/media/"
STATIC_ROOT = path.join(BASE_DIR, "media")