190 lines
4.5 KiB
Python
190 lines
4.5 KiB
Python
import os
|
|
|
|
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
|
|
from django.urls import reverse_lazy
|
|
|
|
BASE_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
ALLOWED_HOSTS = [
|
|
'127.0.0.1',
|
|
'localhost',
|
|
'test.local',
|
|
]
|
|
CORS_ORIGIN_ALLOW_ALL = True
|
|
|
|
# Application definition
|
|
|
|
INSTALLED_APPS = [
|
|
'django.contrib.admin',
|
|
'django.contrib.auth',
|
|
'django.contrib.contenttypes',
|
|
'django.contrib.sessions',
|
|
'django.contrib.messages',
|
|
'django.contrib.staticfiles',
|
|
'rest_framework',
|
|
'corsheaders',
|
|
|
|
'drf_yasg',
|
|
'snippets',
|
|
'users',
|
|
'articles',
|
|
'todo',
|
|
'people'
|
|
]
|
|
|
|
MIDDLEWARE = [
|
|
'corsheaders.middleware.CorsMiddleware',
|
|
'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',
|
|
'drf_yasg.middleware.SwaggerExceptionMiddleware',
|
|
]
|
|
|
|
ROOT_URLCONF = 'testproj.urls'
|
|
|
|
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',
|
|
],
|
|
},
|
|
},
|
|
]
|
|
|
|
WSGI_APPLICATION = 'testproj.wsgi.application'
|
|
|
|
# Password validation
|
|
# https://docs.djangoproject.com/en/1.11/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',
|
|
},
|
|
]
|
|
|
|
# Django Rest Framework
|
|
|
|
REST_FRAMEWORK = {
|
|
'DEFAULT_PERMISSION_CLASSES': (
|
|
'rest_framework.permissions.IsAuthenticated',
|
|
)
|
|
}
|
|
|
|
# drf-yasg
|
|
|
|
SWAGGER_SETTINGS = {
|
|
'LOGIN_URL': reverse_lazy('admin:login'),
|
|
'LOGOUT_URL': '/admin/logout',
|
|
|
|
'DEFAULT_INFO': 'testproj.urls.swagger_info',
|
|
|
|
'SECURITY_DEFINITIONS': {
|
|
'Basic': {
|
|
'type': 'basic'
|
|
},
|
|
'Bearer': {
|
|
'type': 'apiKey',
|
|
'name': 'Authorization',
|
|
'in': 'header'
|
|
}
|
|
}
|
|
}
|
|
|
|
REDOC_SETTINGS = {
|
|
'SPEC_URL': ('schema-json', {'format': '.json'}),
|
|
}
|
|
|
|
# Internationalization
|
|
# https://docs.djangoproject.com/en/1.11/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.11/howto/static-files/
|
|
|
|
STATIC_URL = '/static/'
|
|
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
|
|
|
|
# Testing
|
|
|
|
TEST_RUNNER = 'testproj.runner.PytestTestRunner'
|
|
|
|
# Logging configuration
|
|
|
|
LOGGING = {
|
|
'version': 1,
|
|
'disable_existing_loggers': True,
|
|
'formatters': {
|
|
'pipe_separated': {
|
|
'format': '%(asctime)s | %(levelname)s | %(name)s | %(message)s'
|
|
}
|
|
},
|
|
'handlers': {
|
|
'console_log': {
|
|
'level': 'DEBUG',
|
|
'class': 'logging.StreamHandler',
|
|
'stream': 'ext://sys.stdout',
|
|
'formatter': 'pipe_separated',
|
|
},
|
|
},
|
|
'loggers': {
|
|
'drf_yasg': {
|
|
'handlers': ['console_log'],
|
|
'level': 'DEBUG',
|
|
'propagate': False,
|
|
},
|
|
'django': {
|
|
'handlers': ['console_log'],
|
|
'level': 'DEBUG',
|
|
'propagate': False,
|
|
},
|
|
'django.db.backends': {
|
|
'handlers': ['console_log'],
|
|
'level': 'INFO',
|
|
'propagate': False,
|
|
},
|
|
'django.template': {
|
|
'handlers': ['console_log'],
|
|
'level': 'INFO',
|
|
'propagate': False,
|
|
},
|
|
'swagger_spec_validator': {
|
|
'handlers': ['console_log'],
|
|
'level': 'INFO',
|
|
'propagate': False,
|
|
}
|
|
},
|
|
'root': {
|
|
'handlers': ['console_log'],
|
|
'level': 'INFO',
|
|
}
|
|
}
|