2016-09-29 20:20:10 +00:00
|
|
|
"""
|
|
|
|
Django settings for spejstore project.
|
|
|
|
|
|
|
|
Generated by 'django-admin startproject' using Django 1.10.1.
|
|
|
|
|
|
|
|
For more information on this file, see
|
|
|
|
https://docs.djangoproject.com/en/1.10/topics/settings/
|
|
|
|
|
|
|
|
For the full list of settings and their values, see
|
|
|
|
https://docs.djangoproject.com/en/1.10/ref/settings/
|
|
|
|
"""
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
|
|
|
|
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
|
|
|
|
|
|
|
|
# Quick-start development settings - unsuitable for production
|
|
|
|
# See https://docs.djangoproject.com/en/1.10/howto/deployment/checklist/
|
|
|
|
|
|
|
|
# SECURITY WARNING: keep the secret key used in production secret!
|
|
|
|
SECRET_KEY = '#hjthi7_udsyt*9eeyb&nwgw5x=%pk_lnz3+u2tg9@=w3p1m*k'
|
|
|
|
|
|
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
|
|
|
DEBUG = True
|
|
|
|
|
2019-01-10 19:03:03 +00:00
|
|
|
ALLOWED_HOSTS = ['devinventory', 'inventory.waw.hackerspace.pl', 'i', 'inventory']
|
2018-10-10 17:56:43 +00:00
|
|
|
LOGIN_REDIRECT_URL = '/admin/'
|
2016-09-29 20:20:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Application definition
|
|
|
|
|
|
|
|
INSTALLED_APPS = [
|
2018-09-26 20:27:24 +00:00
|
|
|
'flat_responsive',
|
2016-09-29 20:20:10 +00:00
|
|
|
'django.contrib.admin',
|
|
|
|
'django.contrib.auth',
|
|
|
|
'django.contrib.contenttypes',
|
|
|
|
'django.contrib.sessions',
|
|
|
|
'django.contrib.messages',
|
|
|
|
'django.contrib.staticfiles',
|
2017-02-16 01:01:36 +00:00
|
|
|
'django.contrib.postgres',
|
2016-09-29 20:20:10 +00:00
|
|
|
|
2018-10-10 17:56:43 +00:00
|
|
|
'social_django',
|
|
|
|
|
2016-09-29 20:20:10 +00:00
|
|
|
'django_hstore',
|
2017-02-15 03:01:47 +00:00
|
|
|
'tree',
|
2017-02-16 15:14:37 +00:00
|
|
|
'django_select2',
|
2017-03-06 15:50:55 +00:00
|
|
|
'rest_framework',
|
2017-10-07 20:29:28 +00:00
|
|
|
'django_markdown2',
|
2016-09-29 20:20:10 +00:00
|
|
|
|
|
|
|
'storage',
|
|
|
|
]
|
|
|
|
|
|
|
|
MIDDLEWARE = [
|
|
|
|
'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',
|
2018-10-10 17:56:43 +00:00
|
|
|
'social_django.middleware.SocialAuthExceptionMiddleware',
|
2016-09-29 20:20:10 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
ROOT_URLCONF = 'spejstore.urls'
|
|
|
|
|
|
|
|
TEMPLATES = [
|
|
|
|
{
|
|
|
|
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
2017-02-16 01:01:36 +00:00
|
|
|
'DIRS': ['templates/'],
|
2016-09-29 20:20:10 +00:00
|
|
|
'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',
|
2018-10-10 17:56:43 +00:00
|
|
|
'social_django.context_processors.backends',
|
|
|
|
'social_django.context_processors.login_redirect',
|
2016-09-29 20:20:10 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
|
|
|
WSGI_APPLICATION = 'spejstore.wsgi.application'
|
|
|
|
|
|
|
|
|
|
|
|
# Database
|
|
|
|
# https://docs.djangoproject.com/en/1.10/ref/settings/#databases
|
|
|
|
|
|
|
|
DATABASES = {
|
|
|
|
'default': {
|
|
|
|
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
|
|
|
'NAME': 'postgres',
|
|
|
|
'USER': 'postgres',
|
|
|
|
'HOST': 'db',
|
|
|
|
'PORT': 5432,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Password validation
|
|
|
|
# https://docs.djangoproject.com/en/1.10/ref/settings/#auth-password-validators
|
|
|
|
|
|
|
|
AUTH_PASSWORD_VALIDATORS = [
|
|
|
|
{
|
|
|
|
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
2018-09-26 20:20:36 +00:00
|
|
|
# select2
|
|
|
|
|
|
|
|
SELECT2_JS = 'js/select2.min.js'
|
|
|
|
SELECT2_CSS = 'css/select2.min.css'
|
|
|
|
SELECT2_I18N_PATH = ''
|
|
|
|
|
2017-02-28 23:16:10 +00:00
|
|
|
AUTHENTICATION_BACKENDS = (
|
2018-10-10 17:56:43 +00:00
|
|
|
'auth.backend.HSWawOAuth2',
|
2017-02-28 23:16:10 +00:00
|
|
|
'django.contrib.auth.backends.ModelBackend',
|
|
|
|
)
|
|
|
|
|
2018-10-10 17:56:43 +00:00
|
|
|
SOCIAL_AUTH_PIPELINE = (
|
|
|
|
'social_core.pipeline.social_auth.social_details',
|
|
|
|
'social_core.pipeline.social_auth.social_uid',
|
|
|
|
'social_core.pipeline.social_auth.social_user',
|
|
|
|
'social_core.pipeline.user.get_username',
|
2018-10-10 19:33:16 +00:00
|
|
|
'social_core.pipeline.social_auth.associate_by_email',
|
2019-01-10 12:33:45 +00:00
|
|
|
'auth.pipeline.associate_by_personal_email',
|
2018-10-10 17:56:43 +00:00
|
|
|
'social_core.pipeline.user.create_user',
|
|
|
|
'social_core.pipeline.social_auth.associate_user',
|
|
|
|
'social_core.pipeline.social_auth.load_extra_data',
|
|
|
|
'social_core.pipeline.user.user_details',
|
|
|
|
'auth.pipeline.staff_me_up',
|
2018-10-10 19:33:16 +00:00
|
|
|
)
|
2017-02-28 23:16:10 +00:00
|
|
|
|
2016-09-29 20:20:10 +00:00
|
|
|
# Internationalization
|
|
|
|
# https://docs.djangoproject.com/en/1.10/topics/i18n/
|
|
|
|
|
|
|
|
LANGUAGE_CODE = 'en-us'
|
|
|
|
|
|
|
|
TIME_ZONE = 'UTC'
|
|
|
|
|
|
|
|
USE_I18N = True
|
|
|
|
|
|
|
|
USE_L10N = True
|
|
|
|
|
|
|
|
USE_TZ = True
|
|
|
|
|
|
|
|
|
|
|
|
# Static files (CSS, JavaScript, Images)
|
|
|
|
# https://docs.djangoproject.com/en/1.10/howto/static-files/
|
|
|
|
|
|
|
|
STATIC_URL = '/static/'
|
2017-02-16 01:01:36 +00:00
|
|
|
|
|
|
|
STATICFILES_DIRS = [
|
|
|
|
os.path.join(BASE_DIR, "static"),
|
|
|
|
]
|
2017-02-28 23:16:10 +00:00
|
|
|
|
|
|
|
MEDIA_URL = '/media/'
|
|
|
|
MEDIA_ROOT = os.path.join(BASE_DIR, "media")
|
2017-03-06 15:50:55 +00:00
|
|
|
|
|
|
|
# REST Framework
|
|
|
|
REST_FRAMEWORK = {
|
|
|
|
# Use Django's standard `django.contrib.auth` permissions,
|
|
|
|
# or allow read-only access for unauthenticated users.
|
|
|
|
'DEFAULT_PERMISSION_CLASSES': [
|
|
|
|
'rest_framework.permissions.DjangoModelPermissionsOrAnonReadOnly'
|
|
|
|
]
|
|
|
|
}
|
2017-05-28 20:00:54 +00:00
|
|
|
|
2018-10-10 17:56:43 +00:00
|
|
|
SOCIAL_AUTH_HSWAW_KEY = os.getenv('SPEJSTORE_CLIENT_ID')
|
|
|
|
SOCIAL_AUTH_HSWAW_SECRET = os.getenv('SPEJSTORE_SECRET')
|
|
|
|
|
|
|
|
SOCIAL_AUTH_POSTGRES_JSONFIELD = True
|
|
|
|
|
2017-12-13 20:21:13 +00:00
|
|
|
LABEL_API = 'http://label.waw.hackerspace.pl:4567'
|