mybuddy/babybuddy/settings/production.example.py

34 lines
811 B
Python
Raw Permalink Normal View History

2017-11-20 16:12:09 +00:00
from .base import *
# Production settings
# See babybuddy.settings.base for additional settings information.
2022-02-10 00:00:30 +00:00
SECRET_KEY = ""
2017-11-20 16:12:09 +00:00
2022-02-10 00:00:30 +00:00
ALLOWED_HOSTS = [""]
2017-11-20 16:12:09 +00:00
# Database
2024-01-14 04:22:08 +00:00
# https://docs.djangoproject.com/en/5.0/ref/settings/#databases
2017-11-20 16:12:09 +00:00
DATABASES = {
2022-02-10 00:00:30 +00:00
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": os.path.join(BASE_DIR, "../data/db.sqlite3"),
2017-11-20 16:12:09 +00:00
}
}
2020-01-19 16:49:45 +00:00
# Media files
2024-01-14 04:22:08 +00:00
# https://docs.djangoproject.com/en/5.0/topics/files/
2017-11-20 16:12:09 +00:00
2022-02-10 00:00:30 +00:00
MEDIA_ROOT = os.path.join(BASE_DIR, "../data/media")
# Security
# After setting up SSL, uncomment the settings below for enhanced security of
# application cookies.
#
2024-01-14 04:22:08 +00:00
# See https://docs.djangoproject.com/en/5.0/topics/http/sessions/#settings
# See https://docs.djangoproject.com/en/5.0/ref/csrf/#settings
# SESSION_COOKIE_SECURE = True
# CSRF_COOKIE_SECURE = True