mirror of https://github.com/snachodog/mybuddy.git
27 lines
708 B
Python
27 lines
708 B
Python
from .base import *
|
|
|
|
# Quick-start development settings - unsuitable for production
|
|
# https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/
|
|
|
|
SECRET_KEY = 'CHANGE ME'
|
|
DEBUG = True
|
|
|
|
|
|
# Static files (CSS, JavaScript, Images)
|
|
# 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
|
|
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',
|
|
)
|