mirror of
https://github.com/daniviga/bite.git
synced 2024-11-23 13:26:14 +01:00
31 lines
653 B
Python
31 lines
653 B
Python
# vim: syntax=python
|
|
|
|
from freedcs 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!
|
|
DEBUG = False
|
|
|
|
ALLOWED_HOSTS = ['*']
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.postgresql',
|
|
'NAME': 'freedcs',
|
|
'USER': 'freedcs',
|
|
'PASSWORD': 'password',
|
|
'HOST': 'timescale',
|
|
'PORT': '5432',
|
|
}
|
|
}
|
|
|
|
REST_FRAMEWORK = {
|
|
'DEFAULT_RENDERER_CLASSES': (
|
|
'rest_framework.renderers.JSONRenderer',
|
|
)
|
|
}
|
|
|
|
SKIP_WHITELIST = True
|