Skip to content

Commit 6bc243a

Browse files
committed
chore: add settings.py.example
1 parent bd25049 commit 6bc243a

File tree

1 file changed

+146
-0
lines changed

1 file changed

+146
-0
lines changed

corvee/settings.py.example

+146
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+
"""
2+
Django settings for corvee project.
3+
4+
Generated by 'django-admin startproject' using Django 2.1.7.
5+
6+
For more information on this file, see
7+
https://docs.djangoproject.com/en/2.1/topics/settings/
8+
9+
For the full list of settings and their values, see
10+
https://docs.djangoproject.com/en/2.1/ref/settings/
11+
"""
12+
13+
import os
14+
15+
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
16+
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
17+
18+
19+
# Quick-start development settings - unsuitable for production
20+
# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
21+
22+
# SECURITY WARNING: keep the secret key used in production secret!
23+
SECRET_KEY = 'verysecretlsdkjfksdljfksdljfklsdjfklsdjklf'
24+
25+
# SECURITY WARNING: don't run with debug turned on in production!
26+
DEBUG = True
27+
28+
ALLOWED_HOSTS = ['*']
29+
30+
31+
# Application definition
32+
33+
INSTALLED_APPS = [
34+
'django.contrib.admin',
35+
'django.contrib.auth',
36+
'django.contrib.contenttypes',
37+
'django.contrib.sessions',
38+
'django.contrib.messages',
39+
'django.contrib.staticfiles',
40+
'corvee.src'
41+
]
42+
43+
MIDDLEWARE = [
44+
'django.middleware.security.SecurityMiddleware',
45+
'django.contrib.sessions.middleware.SessionMiddleware',
46+
'django.middleware.common.CommonMiddleware',
47+
'django.middleware.csrf.CsrfViewMiddleware',
48+
'django.contrib.auth.middleware.AuthenticationMiddleware',
49+
'django.contrib.messages.middleware.MessageMiddleware',
50+
'django.middleware.clickjacking.XFrameOptionsMiddleware',
51+
]
52+
53+
ROOT_URLCONF = 'corvee.urls'
54+
55+
TEMPLATES = [
56+
{
57+
'BACKEND': 'django.template.backends.django.DjangoTemplates',
58+
'DIRS': [os.path.join(BASE_DIR, 'corvee', 'templates')],
59+
'APP_DIRS': True,
60+
'OPTIONS': {
61+
'context_processors': [
62+
'django.template.context_processors.debug',
63+
'django.template.context_processors.request',
64+
'django.contrib.auth.context_processors.auth',
65+
'django.contrib.messages.context_processors.messages',
66+
],
67+
},
68+
},
69+
]
70+
71+
WSGI_APPLICATION = 'corvee.wsgi.application'
72+
73+
74+
# Database
75+
# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
76+
77+
DATABASES = {
78+
"default": {
79+
"ENGINE": "django.db.backends.sqlite3",
80+
"NAME": "corvee",
81+
}
82+
}
83+
84+
DEFAULT_AUTO_FIELD = 'django.db.models.AutoField'
85+
86+
# Password validation
87+
# https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators
88+
89+
AUTH_PASSWORD_VALIDATORS = [
90+
{
91+
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
92+
},
93+
{
94+
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
95+
},
96+
{
97+
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
98+
},
99+
{
100+
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
101+
},
102+
]
103+
104+
105+
# Internationalization
106+
# https://docs.djangoproject.com/en/2.1/topics/i18n/
107+
108+
LANGUAGE_CODE = 'en-us'
109+
TIME_ZONE = 'Europe/Amsterdam'
110+
USE_I18N = True
111+
USE_L10N = True
112+
USE_TZ = True
113+
114+
115+
# IDP Settings
116+
LOGIN_REDIRECT_URL='/main/'
117+
IDP_CLIENT_ID = 'henk'
118+
IDP_CLIENT_SECRET = 'secret'
119+
IDP_REDIRECT_URL = 'https://corvee.djoamersfoort.nl/oauth/'
120+
IDP_AUTHORIZE_URL = 'https://leden.djoamersfoort.nl/o/authorize/'
121+
IDP_TOKEN_URL = 'https://leden.djoamersfoort.nl/o/token/'
122+
IDP_API_URL = 'https://leden.djoamersfoort.nl/api/v1/member/details'
123+
IDP_REQUIRED_ROLES = ['begeleider', 'bestuur', 'ondersteuning']
124+
IDP_SCOPES = ['user/basic', 'user/names']
125+
126+
SESSION_EXPIRE_AT_BROWSER_CLOSE = True
127+
SESSION_COOKIE_SECURE = True
128+
SESSION_COOKIE_HTTPONLY = True
129+
CSRF_TRUSTED_ORIGINS = ["https://corvee.djoamersfoort.nl"]
130+
131+
LEDEN_ADMIN_API_URL = 'https://leden.djoamersfoort.nl/api/v1/smoelenboek/?large=1'
132+
PRESENCE_API_URL = 'https://aanmelden.djoamersfoort.nl'
133+
BACKEND_CLIENT_ID = 'aaa'
134+
BACKEND_CLIENT_SECRET = 'bbb'
135+
136+
# Days a person won't be picked after being marked OK
137+
ABSOLVE_DAYS = 31
138+
139+
# Static files (CSS, JavaScript, Images)
140+
# https://docs.djangoproject.com/en/2.1/howto/static-files/
141+
142+
STATIC_URL = '/static/'
143+
STATIC_ROOT = '/srv/static'
144+
STATICFILES_DIRS = (
145+
os.path.join(BASE_DIR, "corvee", "static"),
146+
)

0 commit comments

Comments
 (0)