mirror of
https://lab.enough.community/fedeproxy/server
synced 2025-01-01 18:57:52 +01:00
181 lines
4.7 KiB
Python
181 lines
4.7 KiB
Python
"""
|
|
Django settings for fedeproxy project.
|
|
|
|
Generated by 'django-admin startproject' using Django 2.1.5.
|
|
|
|
For more information on this file, see
|
|
https://docs.djangoproject.com/en/2.1/topics/settings/
|
|
|
|
For the full list of settings and their values, see
|
|
https://docs.djangoproject.com/en/2.1/ref/settings/
|
|
"""
|
|
|
|
import os
|
|
from os.path import dirname, join
|
|
|
|
# Build paths inside the project like this: os.path.join(CONFIG_DIR, ...)
|
|
FEDEPROXY_DOT = os.environ.get('FEDEPROXY_DOT', os.path.expanduser('~/.fedeproxy'))
|
|
|
|
if os.path.exists('setup.cfg'): # running from sources
|
|
CONFIG_DIR = os.path.abspath('.')
|
|
else:
|
|
CONFIG_DIR = f'{FEDEPROXY_DOT}'
|
|
|
|
CERTS_DIR = f'{CONFIG_DIR}/certs'
|
|
|
|
# Quick-start development settings - unsuitable for production
|
|
# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
|
|
|
|
# SECURITY WARNING: keep the secret key used in production secret!
|
|
SECRET_KEY = 'mhh^de)&ky$&g083tldl@d7km-6)jc=cygb+07'
|
|
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
|
# DEBUG = True
|
|
|
|
ALLOWED_HOSTS = ['*']
|
|
|
|
|
|
# Application definition
|
|
|
|
INSTALLED_APPS = [
|
|
'django.contrib.admin',
|
|
'django.contrib.auth',
|
|
'django.contrib.contenttypes',
|
|
'django.contrib.sessions',
|
|
'django.contrib.messages',
|
|
'django.contrib.staticfiles',
|
|
'django.contrib.sites',
|
|
'rest_framework',
|
|
'rest_framework.authtoken',
|
|
|
|
'fedeproxy.api',
|
|
|
|
'bootstrap3',
|
|
'allauth',
|
|
'allauth.account',
|
|
'allauth.socialaccount',
|
|
'allauth.socialaccount.providers.gitlab', # enabled by configure
|
|
'fedeproxy.auth',
|
|
]
|
|
|
|
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',
|
|
]
|
|
|
|
ROOT_URLCONF = 'fedeproxy.urls'
|
|
|
|
AUTHENTICATION_BACKENDS = (
|
|
"allauth.account.auth_backends.AuthenticationBackend",
|
|
)
|
|
|
|
MODULE_DIR = dirname(__file__)
|
|
|
|
TEMPLATES = [
|
|
{
|
|
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
|
'DIRS': [
|
|
join(MODULE_DIR, 'templates', 'allauth'),
|
|
join(MODULE_DIR, 'templates'),
|
|
],
|
|
'APP_DIRS': True,
|
|
'OPTIONS': {
|
|
'context_processors': [
|
|
'django.template.context_processors.debug',
|
|
'django.template.context_processors.request',
|
|
'django.template.context_processors.static',
|
|
'django.contrib.auth.context_processors.auth',
|
|
'django.contrib.messages.context_processors.messages',
|
|
],
|
|
},
|
|
},
|
|
]
|
|
|
|
WSGI_APPLICATION = 'fedeproxy.wsgi.application'
|
|
|
|
|
|
# Database
|
|
# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': os.path.join(CONFIG_DIR, 'db.sqlite3'),
|
|
}
|
|
}
|
|
|
|
|
|
# Password validation
|
|
# https://docs.djangoproject.com/en/2.1/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',
|
|
},
|
|
]
|
|
|
|
|
|
# Internationalization
|
|
# https://docs.djangoproject.com/en/2.1/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/2.1/howto/static-files/
|
|
|
|
STATIC_URL = '/static/'
|
|
|
|
STATICFILES_DIRS = (
|
|
join(MODULE_DIR, "static"),
|
|
)
|
|
|
|
REST_FRAMEWORK = {
|
|
'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.PageNumberPagination',
|
|
'PAGE_SIZE': 10
|
|
}
|
|
|
|
FEDEPROXY_GITLAB_URL = 'https://???'
|
|
|
|
SITE_ID = 1
|
|
ACCOUNT_DEFAULT_HTTP_PROTOCOL = os.environ.get('ACCOUNT_DEFAULT_HTTP_PROTOCOL', 'https')
|
|
LOGIN_REDIRECT_URL = '/member/'
|
|
ACCOUNT_AUTHENTICATION_METHOD = 'username'
|
|
ACCOUNT_LOGOUT_ON_GET = True
|
|
ACCOUNT_USERNAME_REQUIRED = False
|
|
ACCOUNT_EMAIL_REQUIRED = False
|
|
ACCOUNT_USERNAME_MIN_LENGTH = 1
|
|
ACCOUNT_EMAIL_VERIFICATION = 'none' # testing...
|
|
# ACCOUNT_USER_MODEL_USERNAME_FIELD = None
|
|
SOCIALACCOUNT_AUTO_SIGNUP = False # require social accounts to use the signup form ... I think
|
|
# For custom sign-up form:
|
|
# http://stackoverflow.com/questions/12303478/how-to-customize-user-profile-when-using-django-allauth
|
|
SOCIALACCOUNT_PROVIDERS = {
|
|
'gitlab': {
|
|
'GITLAB_URL': FEDEPROXY_GITLAB_URL,
|
|
'SCOPE': ['read_user', 'api'],
|
|
},
|
|
}
|