1
0
mirror of https://github.com/daniviga/bite.git synced 2024-11-23 13:26:14 +01:00
bite/docker/django/production.py.sample

31 lines
644 B
Plaintext
Raw Normal View History

# vim: syntax=python
from beer import settings
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'i4z%50+4b4ek(l0#!w2-r1hpo%&r6tk7p$p_-(=6d!c9n=g5m&'
# SECURITY WARNING: don't run with debug turned on in production!
2020-06-16 22:48:58 +02:00
DEBUG = False
ALLOWED_HOSTS = ['*']
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'beer',
'USER': 'beer',
'PASSWORD': 'password',
'HOST': 'timescale',
'PORT': '5432',
}
}
2020-06-16 22:48:58 +02:00
REST_FRAMEWORK = {
'DEFAULT_RENDERER_CLASSES': (
'rest_framework.renderers.JSONRenderer',
)
}
SKIP_WHITELIST = True