forked from felipelm/django-nginx-reactjs-docker
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbase.py
156 lines (135 loc) · 4.95 KB
/
base.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
"""
Django settings for backend project.
Generated by 'django-admin startproject' using Django 2.1.4.
Since the start of the project, we have upgraded the version to 2.1.7
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
import datetime
# 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/2.1/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = "%qviowlmp*kitbai+y!%1y=jdl_o3_#7+_ud6l9uwn$$=bxt1y"
ALLOWED_HOSTS = "*"
CORS_ORIGIN_ALLOW_ALL = True
# Application definition
INSTALLED_APPS = [
# Personal,
"custom_models",
# BASE
"django.contrib.admin",
"django.contrib.auth",
"django.contrib.contenttypes",
"django.contrib.sessions",
"django.contrib.messages",
"django.contrib.staticfiles",
# Requirements
"corsheaders",
"rest_framework",
"djoser",
"rest_framework_swagger",
"rest_framework.authtoken",
]
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",
"corsheaders.middleware.CorsMiddleware",
]
ROOT_URLCONF = "config.urls"
WSGI_APPLICATION = "config.wsgi.application"
TEMPLATES = [
{
"BACKEND": "django.template.backends.django.DjangoTemplates",
"DIRS": [],
"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",
]
},
}
]
# 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"},
]
REST_FRAMEWORK = {
"DEFAULT_PERMISSION_CLASSES": (
"rest_framework.permissions.IsAuthenticatedOrReadOnly",
),
"DEFAULT_AUTHENTICATION_CLASSES": (
"rest_framework.authentication.SessionAuthentication",
"rest_framework.authentication.BasicAuthentication",
"rest_framework_jwt.authentication.JSONWebTokenAuthentication",
),
}
LANGUAGE_CODE = "en-us"
TIME_ZONE = "Canada/Eastern"
USE_I18N = True
USE_L10N = True
USE_TZ = True
CORS_ALLOW_HEADERS = [
"accept",
"accept-encoding",
"authorization",
"content-disposition",
"content-type",
"origin",
"user-agent",
"x-csrftoken",
"x-requested-with",
]
# Allow the user to log in by email or username
AUTH_USER_MODEL = "custom_models.User"
# JWT settings for authentication
JWT_AUTH = {
"JWT_EXPIRATION_DELTA": datetime.timedelta(hours=1),
"JWT_ALLOW_REFRESH": True,
}
SIMPLE_JWT = {"AUTH_HEADER_TYPES": ("JWT",)}
# Swagger settings for documentation
SWAGGER_SETTINGS = {
"LOGIN_URL": "rest_framework:login",
"LOGOUT_URL": "rest_framework:logout",
}
# Djoser settings for Rest Login (https://djoser.readthedocs.io/en/latest/settings.html)
DJOSER = {
"SET_PASSWORD_RETYPE": True,
"SEND_ACTIVATION_EMAIL": False,
"PERMISSIONS": {
# Admin Only
"activation": ["rest_framework.permissions.IsAdminUser"], #
"set_username": ["rest_framework.permissions.IsAdminUser"],
"user_delete": ["rest_framework.permissions.IsAdminUser"],
"user_list": ["rest_framework.permissions.IsAdminUser"],
"password_reset": ["rest_framework.permissions.IsAdminUser"],
# Authenticated
"token_destroy": ["rest_framework.permissions.IsAuthenticated"],
# Current User or Admin
"user": ["djoser.permissions.CurrentUserOrAdmin"],
"set_password": ["djoser.permissions.CurrentUserOrAdmin"],
# Any
"password_reset_confirm": ["rest_framework.permissions.AllowAny"],
"user_create": ["rest_framework.permissions.AllowAny"],
"token_create": ["rest_framework.permissions.AllowAny"],
},
}