import os import environ import sentry_sdk from sentry_sdk.integrations.django import DjangoIntegration BASE_DIR = environ.Path(__file__) - 2 env = environ.Env() env_file = str(BASE_DIR.path('.env')) if os.path.exists(env_file): env.read_env(env_file) SECRET_KEY = '6)mck*tk2eq++!01pr2!7qo7#zf_e(hi_m=-qa4x-ah)lvvt4-' DEBUG = env.bool('DJANGO_DEBUG', True) ALLOWED_HOSTS = ['0.0.0.0', '127.0.0.1', 'home.bakatrouble.pw', 'localhost', 'bots.bakatrouble.pw'] INSTALLED_APPS = [ 'django_extensions', 'bootstrap4', 'djconfig', 'config.suit_config.SuitConfig', 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'cabinet.apps.CabinetConfig', 'feeds.apps.FeedsConfig', ] MIDDLEWARE = [ 'djconfig.middleware.DjConfigMiddleware', 'django.middleware.security.SecurityMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', ] ROOT_URLCONF = 'config.urls' TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [str(BASE_DIR.path('templates'))], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', 'djconfig.context_processors.config', 'config.utils.turbolinks', 'cabinet.utils.cabinet_context_processor', ], }, }, ] WSGI_APPLICATION = 'config.wsgi.application' DATABASES = { 'default': env.db('DATABASE_URL', default='sqlite:///db.sqlite3'), } DATABASES['default']['ATOMIC_REQUESTS'] = True LANGUAGE_CODE = 'en-us' TIME_ZONE = 'UTC' USE_I18N = True USE_L10N = True USE_TZ = True STATICFILES_DIRS = [ str(BASE_DIR.path('static')), ] STATICFILES_FINDERS = [ 'django.contrib.staticfiles.finders.FileSystemFinder', 'django.contrib.staticfiles.finders.AppDirectoriesFinder', ] CACHES = { "default": { "BACKEND": "django_redis.cache.RedisCache", "LOCATION": "redis://127.0.0.1:6379/1", "OPTIONS": { "CLIENT_CLASS": "django_redis.client.DefaultClient", } } } SESSION_ENGINE = "django.contrib.sessions.backends.cache" SESSION_CACHE_ALIAS = "default" PUBLIC_ROOT = BASE_DIR.path('public') STATIC_URL = '/static/' STATIC_ROOT = str(PUBLIC_ROOT.path('static')) MEDIA_URL = '/uploads/' MEDIA_ROOT = str(PUBLIC_ROOT.path('uploads')) LOGIN_URL = 'cabinet:login' LOGIN_REDIRECT_URL = 'cabinet:index' LOGOUT_REDIRECT_URL = LOGIN_URL sentry_sdk.init( dsn=env.str('SENTRY_DSN', None), integrations=[DjangoIntegration()], )