All checks were successful
Deploy Quartz site to GitHub Pages / build (push) Successful in 2m29s
83 lines
2.4 KiB
Python
83 lines
2.4 KiB
Python
"""
|
|
Django settings for quiz application
|
|
"""
|
|
import os
|
|
from pathlib import Path
|
|
|
|
# Build paths inside the project
|
|
BASE_DIR = Path(__file__).resolve().parent
|
|
|
|
# SECURITY WARNING: keep the secret key used in production secret!
|
|
SECRET_KEY = os.environ.get('SECRET_KEY', 'django-insecure-change-this-in-production')
|
|
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
|
DEBUG = os.environ.get('DEBUG', 'True') == 'True'
|
|
|
|
ALLOWED_HOSTS = os.environ.get('ALLOWED_HOSTS', '*').split(',')
|
|
|
|
# Application definition
|
|
INSTALLED_APPS = [
|
|
'django.contrib.admin',
|
|
'django.contrib.auth',
|
|
'django.contrib.contenttypes',
|
|
'django.contrib.sessions',
|
|
'django.contrib.messages',
|
|
'django.contrib.staticfiles',
|
|
'quiz.apps.QuizAppConfig',
|
|
'file.apps.FileConfig',
|
|
]
|
|
|
|
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',
|
|
'quiz.middleware.LazyAuthMiddleware',
|
|
]
|
|
|
|
ROOT_URLCONF = 'quiz.urls'
|
|
|
|
TEMPLATES = [{
|
|
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
|
'DIRS': [BASE_DIR / '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',
|
|
],
|
|
},
|
|
}]
|
|
|
|
# Database
|
|
# https://docs.djangoproject.com/en/stable/ref/settings/#databases
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': BASE_DIR / 'db.sqlite3',
|
|
'OPTIONS': {
|
|
'init_command': "PRAGMA journal_mode=WAL;",
|
|
}
|
|
}
|
|
}
|
|
|
|
# Static files (CSS, JavaScript, Images)
|
|
# https://docs.djangoproject.com/en/stable/howto/static-files/
|
|
STATIC_URL = '/static/'
|
|
STATIC_ROOT = BASE_DIR / 'static'
|
|
|
|
# Default primary key field type
|
|
# https://docs.djangoproject.com/en/stable/ref/settings/#default-auto-field
|
|
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
|
|
|
|
# Internationalization
|
|
USE_TZ = True
|
|
|
|
# Question import settings
|
|
QUESTION_WATCH_PATH = 'content/Anatomi & Histologi 2/Gamla tentor'
|
|
|