mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 21:27:49 +02:00
21 lines
486 B
Python
21 lines
486 B
Python
# vim: syntax=python
|
|
|
|
"""
|
|
Django local_settings for ram project.
|
|
"""
|
|
|
|
# SECURITY WARNING: keep the secret key used in production secret!
|
|
SECRET_KEY = (
|
|
"django-insecure-1fgtf05rwp0qp05@ef@a7%x#o+t6vk6063py=vhdmut0j!8s4u"
|
|
)
|
|
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
|
DEBUG = False
|
|
|
|
STORAGE_DIR = BASE_DIR / "storage"
|
|
ALLOWED_HOSTS = ["127.0.0.1"]
|
|
CSRF_TRUSTED_ORIGINS = ["https://myhost"]
|
|
ROOT_URLCONF = "ram.urls"
|
|
STATIC_URL = "static/"
|
|
MEDIA_URL = "media/"
|