mybuddy/babybuddy/settings/development.py

27 lines
708 B
Python
Raw Normal View History

from .base import *
# Quick-start development settings - unsuitable for production
2020-01-19 16:49:45 +00:00
# https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/
2022-02-10 00:00:30 +00:00
SECRET_KEY = "CHANGE ME"
DEBUG = True
# Static files (CSS, JavaScript, Images)
2020-01-19 16:49:45 +00:00
# https://docs.djangoproject.com/en/3.0/howto/static-files/
#
# Comment out STATICFILES_STORAGE and uncomment DEBUG = False to test with
# production static files.
# DEBUG = False
2022-02-10 00:00:30 +00:00
STATICFILES_STORAGE = "django.contrib.staticfiles.storage.StaticFilesStorage"
# Django Rest Framework
2020-01-19 16:49:45 +00:00
# https://www.django-rest-framework.org/
2022-02-10 00:00:30 +00:00
REST_FRAMEWORK["DEFAULT_RENDERER_CLASSES"] = (
"rest_framework.renderers.JSONRenderer",
"rest_framework.renderers.BrowsableAPIRenderer",
)