2017-08-19 14:16:51 +00:00
|
|
|
from .base import *
|
|
|
|
|
|
|
|
# Quick-start development settings - unsuitable for production
|
2022-02-21 23:39:38 +00:00
|
|
|
# https://docs.djangoproject.com/en/4.0/howto/deployment/checklist/
|
2017-08-19 14:16:51 +00:00
|
|
|
|
2022-02-22 16:31:02 +00:00
|
|
|
SECRET_KEY = os.environ.get("SECRET_KEY") or "DEVELOPMENT!!"
|
|
|
|
DEBUG = bool(strtobool(os.environ.get("DEBUG") or "True"))
|
2017-11-19 01:57:29 +00:00
|
|
|
|
2017-08-19 14:16:51 +00:00
|
|
|
|
2017-12-03 02:39:57 +00:00
|
|
|
# Static files (CSS, JavaScript, Images)
|
2022-02-21 23:39:38 +00:00
|
|
|
# https://docs.djangoproject.com/en/4.0/howto/static-files/
|
2019-07-11 02:26:10 +00:00
|
|
|
#
|
|
|
|
# Comment out STATICFILES_STORAGE and uncomment DEBUG = False to test with
|
|
|
|
# production static files.
|
2017-12-03 02:39:57 +00:00
|
|
|
|
2019-07-11 02:26:10 +00:00
|
|
|
# DEBUG = False
|
2022-02-10 00:00:30 +00:00
|
|
|
STATICFILES_STORAGE = "django.contrib.staticfiles.storage.StaticFilesStorage"
|
2017-12-03 02:39:57 +00:00
|
|
|
|
|
|
|
|
2017-08-20 17:31:19 +00:00
|
|
|
# Django Rest Framework
|
2020-01-19 16:49:45 +00:00
|
|
|
# https://www.django-rest-framework.org/
|
2017-08-20 17:31:19 +00:00
|
|
|
|
2022-02-10 00:00:30 +00:00
|
|
|
REST_FRAMEWORK["DEFAULT_RENDERER_CLASSES"] = (
|
|
|
|
"rest_framework.renderers.JSONRenderer",
|
|
|
|
"rest_framework.renderers.BrowsableAPIRenderer",
|
2017-08-20 17:31:19 +00:00
|
|
|
)
|