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
|
|
|
|
|
2023-07-11 13:34:35 +00:00
|
|
|
|
2019-05-12 13:58:01 +00:00
|
|
|
def env(name, default=None):
|
2023-07-11 13:34:35 +00:00
|
|
|
return os.getenv("SPEJSTORE_" + name, default)
|
2019-05-12 13:58:01 +00:00
|
|
|
|
|
|
|
|
2016-09-29 20:20:10 +00:00
|
|
|
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
|
|
|
|
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
2023-07-11 13:34:35 +00:00
|
|
|
STATIC_ROOT = os.path.join(BASE_DIR, "build_static")
|
|
|
|
PROD = os.getenv("SPEJSTORE_ENV") == "prod"
|
2016-09-29 20:20:10 +00:00
|
|
|
|
|
|
|
# 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!
|
2023-07-11 13:34:35 +00:00
|
|
|
SECRET_KEY = env("SECRET_KEY", "#hjthi7_udsyt*9eeyb&nwgw5x=%pk_lnz3+u2tg9@=w3p1m*k")
|
2016-09-29 20:20:10 +00:00
|
|
|
|
|
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
2019-02-02 12:21:15 +00:00
|
|
|
DEBUG = not PROD
|
2016-09-29 20:20:10 +00:00
|
|
|
|
2023-07-11 13:34:35 +00:00
|
|
|
ALLOWED_HOSTS = env(
|
|
|
|
"ALLOWED_HOSTS", "devinventory,inventory.waw.hackerspace.pl,i,inventory"
|
|
|
|
).split(",")
|
|
|
|
LOGIN_REDIRECT_URL = "/admin/"
|
2016-09-29 20:20:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Application definition
|
|
|
|
|
|
|
|
INSTALLED_APPS = [
|
2023-07-11 13:34:35 +00:00
|
|
|
"flat_responsive",
|
|
|
|
"django.contrib.admin",
|
|
|
|
"django.contrib.auth",
|
|
|
|
"django.contrib.contenttypes",
|
|
|
|
"django.contrib.sessions",
|
|
|
|
"django.contrib.messages",
|
|
|
|
"django.contrib.staticfiles",
|
|
|
|
"django.contrib.postgres",
|
|
|
|
"social_django",
|
|
|
|
"django_hstore",
|
|
|
|
"tree",
|
|
|
|
"django_select2",
|
|
|
|
"rest_framework",
|
|
|
|
"rest_framework.authtoken",
|
|
|
|
"django_markdown2",
|
|
|
|
"storage",
|
2016-09-29 20:20:10 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
MIDDLEWARE = [
|
2023-07-11 13:34:35 +00:00
|
|
|
"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",
|
|
|
|
"social_django.middleware.SocialAuthExceptionMiddleware",
|
2016-09-29 20:20:10 +00:00
|
|
|
]
|
|
|
|
|
2023-07-11 13:34:35 +00:00
|
|
|
ROOT_URLCONF = "spejstore.urls"
|
2016-09-29 20:20:10 +00:00
|
|
|
|
|
|
|
TEMPLATES = [
|
|
|
|
{
|
2023-07-11 13:34:35 +00:00
|
|
|
"BACKEND": "django.template.backends.django.DjangoTemplates",
|
|
|
|
"DIRS": ["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",
|
|
|
|
"social_django.context_processors.backends",
|
|
|
|
"social_django.context_processors.login_redirect",
|
2016-09-29 20:20:10 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
2023-07-11 13:34:35 +00:00
|
|
|
WSGI_APPLICATION = "spejstore.wsgi.application"
|
2016-09-29 20:20:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Database
|
|
|
|
# https://docs.djangoproject.com/en/1.10/ref/settings/#databases
|
|
|
|
|
|
|
|
DATABASES = {
|
2023-07-11 13:34:35 +00:00
|
|
|
"default": {
|
|
|
|
"ENGINE": env("DB_ENGINE", "django.db.backends.postgresql_psycopg2"),
|
|
|
|
"NAME": env("DB_NAME", "postgres"),
|
|
|
|
"USER": env("DB_USER", "postgres"),
|
|
|
|
"PASSWORD": env("DB_PASSWORD", None),
|
|
|
|
"HOST": env("DB_HOST", "db"),
|
|
|
|
"PORT": env("DB_PORT", 5432),
|
2016-09-29 20:20:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Password validation
|
|
|
|
# https://docs.djangoproject.com/en/1.10/ref/settings/#auth-password-validators
|
|
|
|
|
|
|
|
AUTH_PASSWORD_VALIDATORS = [
|
|
|
|
{
|
2023-07-11 13:34:35 +00:00
|
|
|
"NAME": "django.contrib.auth.password_validation.UserAttributeSimilarityValidator",
|
2016-09-29 20:20:10 +00:00
|
|
|
},
|
|
|
|
{
|
2023-07-11 13:34:35 +00:00
|
|
|
"NAME": "django.contrib.auth.password_validation.MinimumLengthValidator",
|
2016-09-29 20:20:10 +00:00
|
|
|
},
|
|
|
|
{
|
2023-07-11 13:34:35 +00:00
|
|
|
"NAME": "django.contrib.auth.password_validation.CommonPasswordValidator",
|
2016-09-29 20:20:10 +00:00
|
|
|
},
|
|
|
|
{
|
2023-07-11 13:34:35 +00:00
|
|
|
"NAME": "django.contrib.auth.password_validation.NumericPasswordValidator",
|
2016-09-29 20:20:10 +00:00
|
|
|
},
|
|
|
|
]
|
|
|
|
|
2018-09-26 20:20:36 +00:00
|
|
|
# select2
|
|
|
|
|
2023-07-11 13:34:35 +00:00
|
|
|
SELECT2_JS = "js/select2.min.js"
|
|
|
|
SELECT2_CSS = "css/select2.min.css"
|
|
|
|
SELECT2_I18N_PATH = ""
|
2018-09-26 20:20:36 +00:00
|
|
|
|
2017-02-28 23:16:10 +00:00
|
|
|
AUTHENTICATION_BACKENDS = (
|
2023-07-11 13:34:35 +00:00
|
|
|
"auth.backend.HSWawOAuth2",
|
|
|
|
"django.contrib.auth.backends.ModelBackend",
|
2017-02-28 23:16:10 +00:00
|
|
|
)
|
|
|
|
|
2018-10-10 17:56:43 +00:00
|
|
|
SOCIAL_AUTH_PIPELINE = (
|
2023-07-11 13:34:35 +00:00
|
|
|
"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",
|
|
|
|
"social_core.pipeline.social_auth.associate_by_email",
|
|
|
|
"auth.pipeline.associate_by_personal_email",
|
|
|
|
"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/
|
|
|
|
|
2023-07-11 13:34:35 +00:00
|
|
|
LANGUAGE_CODE = "en-us"
|
|
|
|
TIME_ZONE = "UTC"
|
2016-09-29 20:20:10 +00:00
|
|
|
USE_I18N = True
|
|
|
|
USE_L10N = True
|
|
|
|
USE_TZ = True
|
|
|
|
|
|
|
|
# Static files (CSS, JavaScript, Images)
|
|
|
|
# https://docs.djangoproject.com/en/1.10/howto/static-files/
|
|
|
|
|
2023-07-11 13:34:35 +00:00
|
|
|
STATIC_URL = "/static/"
|
2017-02-16 01:01:36 +00:00
|
|
|
STATICFILES_DIRS = [
|
|
|
|
os.path.join(BASE_DIR, "static"),
|
2023-07-11 13:34:35 +00:00
|
|
|
]
|
2017-02-28 23:16:10 +00:00
|
|
|
|
2023-07-11 13:34:35 +00:00
|
|
|
MEDIA_URL = "/media/"
|
|
|
|
MEDIA_ROOT = env("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.
|
2023-07-11 13:34:35 +00:00
|
|
|
"DEFAULT_PERMISSION_CLASSES": [
|
|
|
|
"rest_framework.permissions.IsAuthenticatedOrReadOnly",
|
|
|
|
],
|
|
|
|
"DEFAULT_AUTHENTICATION_CLASSES": [
|
|
|
|
"rest_framework.authentication.BasicAuthentication",
|
|
|
|
"rest_framework.authentication.SessionAuthentication",
|
|
|
|
"rest_framework.authentication.TokenAuthentication",
|
2019-02-02 12:21:15 +00:00
|
|
|
],
|
2017-03-06 15:50:55 +00:00
|
|
|
}
|
2017-05-28 20:00:54 +00:00
|
|
|
|
2023-07-11 13:34:35 +00:00
|
|
|
SOCIAL_AUTH_HSWAW_KEY = env("CLIENT_ID")
|
|
|
|
SOCIAL_AUTH_HSWAW_SECRET = env("SECRET")
|
2019-02-02 12:21:15 +00:00
|
|
|
SOCIAL_AUTH_REDIRECT_IS_HTTPS = PROD
|
2018-10-10 17:56:43 +00:00
|
|
|
|
|
|
|
SOCIAL_AUTH_POSTGRES_JSONFIELD = True
|
|
|
|
|
2023-07-11 13:34:35 +00:00
|
|
|
LABEL_API = env("LABEL_API", "http://label.waw.hackerspace.pl:4567")
|