mirror of https://github.com/snachodog/mybuddy.git
27 lines
790 B
Python
27 lines
790 B
Python
from .base import *
|
|
|
|
# Quick-start development settings - unsuitable for production
|
|
# https://docs.djangoproject.com/en/4.0/howto/deployment/checklist/
|
|
|
|
SECRET_KEY = os.environ.get("SECRET_KEY") or "DEVELOPMENT!!"
|
|
DEBUG = bool(strtobool(os.environ.get("DEBUG") or "True"))
|
|
|
|
|
|
# Static files (CSS, JavaScript, Images)
|
|
# https://docs.djangoproject.com/en/4.0/howto/static-files/
|
|
#
|
|
# Comment out STATICFILES_STORAGE and uncomment DEBUG = False to test with
|
|
# production static files.
|
|
|
|
# DEBUG = False
|
|
STATICFILES_STORAGE = "django.contrib.staticfiles.storage.StaticFilesStorage"
|
|
|
|
|
|
# Django Rest Framework
|
|
# https://www.django-rest-framework.org/
|
|
|
|
REST_FRAMEWORK["DEFAULT_RENDERER_CLASSES"] = (
|
|
"rest_framework.renderers.JSONRenderer",
|
|
"rest_framework.renderers.BrowsableAPIRenderer",
|
|
)
|