83 lines
2.6 KiB
Python
83 lines
2.6 KiB
Python
|
|
"""
|
|
Django settings for sikweb project.
|
|
|
|
Generated by 'django-admin startproject' using Django 1.9.
|
|
|
|
For more information on this file, see
|
|
https://docs.djangoproject.com/en/1.9/topics/settings/
|
|
|
|
For the full list of settings and their values, see
|
|
https://docs.djangoproject.com/en/1.9/ref/settings/
|
|
"""
|
|
|
|
import sentry_sdk
|
|
from sentry_sdk.integrations.django import DjangoIntegration
|
|
from sikweb.base import *
|
|
|
|
SENTRY_DSN = os.getenv('SENTRY_DSN', '')
|
|
DEPLOY_ENV = os.getenv('DEPLOY_ENV', 'production')
|
|
|
|
# Setup sentry
|
|
sentry_sdk.init(
|
|
dsn=SENTRY_DSN,
|
|
environment=DEPLOY_ENV,
|
|
integrations=[DjangoIntegration()],
|
|
|
|
# Set traces_sample_rate to 1.0 to capture 100%
|
|
# of transactions for performance monitoring.
|
|
# We recommend adjusting this value in production.
|
|
traces_sample_rate=0,
|
|
|
|
# If you wish to associate users to errors (assuming you are using
|
|
# django.contrib.auth) you may enable sending PII data.
|
|
send_default_pii=True
|
|
)
|
|
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
|
DEBUG = os.getenv('DEBUG', False) == 'True'
|
|
|
|
URL = os.getenv('HOST', 'api.sahkoinsinoorikilta.fi')
|
|
FRONTEND_URL = os.getenv('FRONTEND_URL', 'sahkoinsinoorikilta.fi')
|
|
ALLOWED_HOSTS = ['localhost', '127.0.0.1', FRONTEND_URL, URL]
|
|
if DEBUG:
|
|
ALLOWED_HOSTS = ['*']
|
|
|
|
USE_X_FORWARDED_HOST = True
|
|
SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')
|
|
|
|
# SECURITY WARNING: keep the secret key used in production secret!
|
|
SECRET_KEY = os.getenv('SECRET_KEY', '7p$85^4ibb^p4-=vs44b7!y0e-zemugze18@a#30&71=a8)dp(')
|
|
|
|
# ReCaptcha
|
|
# http://www.yaconiello.com/blog/integrating-google-recaptcha-to-django/
|
|
GOOGLE_RECAPTCHA_SITE_KEY = os.getenv('GOOGLE_RECAPTCHA_SITE_KEY', 'YOUR-PUBLIC-KEY')
|
|
GOOGLE_RECAPTCHA_SECRET_KEY = os.getenv('GOOGLE_RECAPTCHA_SECRET_KEY', 'YOUR-PRIVATE-KEY')
|
|
|
|
# Email settings (more settings in base.py)
|
|
EMAIL_API_KEY = os.getenv('EMAIL_API_KEY', '')
|
|
# EMAIL_API_SECRET = os.getenv('EMAIL_API_SECRET', '')
|
|
DEFAULT_EMAIL_FROM = 'SIK'
|
|
DEFAULT_EMAIL_FROM_ADDR = 'noreply@sahkoinsinoorikilta.fi'
|
|
ENABLE_AUTOMATIC_EMAILS = True
|
|
|
|
# Token for Telegram bot
|
|
TELEGRAM_BOT_TOKEN = os.getenv('TG_BOT_TOKEN', '<tg token>')
|
|
|
|
# Database settings
|
|
# Only uncomment if default settings in base.py are not ok
|
|
|
|
DB_OPTIONS = {'sslmode': 'require'} if os.getenv('DB_SSL', False) == 'True' else {}
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
|
'NAME': os.getenv('DB_NAME', 'postgres'),
|
|
'USER': os.getenv('DB_USER', 'postgres'),
|
|
'PASSWORD': os.getenv('DB_PASSWD', 'postgres'),
|
|
'HOST': os.getenv('DB_HOST', 'localhost'),
|
|
'PORT': os.getenv('DB_PORT', 5432),
|
|
'OPTIONS': DB_OPTIONS,
|
|
}
|
|
}
|