]> git.p6c8.net - pcdenotes.git/blob - pcdenotes/settings.py
Get SECRET_KEY and DEBUG from .env
[pcdenotes.git] / pcdenotes / settings.py
1 """
2 Django settings for pcdenotes project.
3
4 Generated by 'django-admin startproject' using Django 3.2.11.
5
6 For more information on this file, see
7 https://docs.djangoproject.com/en/3.2/topics/settings/
8
9 For the full list of settings and their values, see
10 https://docs.djangoproject.com/en/3.2/ref/settings/
11 """
12
13 from pathlib import Path
14
15 from dotenv import load_dotenv, find_dotenv
16 load_dotenv(find_dotenv())
17
18 import os
19
20 # Build paths inside the project like this: BASE_DIR / 'subdir'.
21 BASE_DIR = Path(__file__).resolve().parent.parent
22
23
24 # Quick-start development settings - unsuitable for production
25 # See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/
26
27 # SECURITY WARNING: keep the secret key used in production secret!
28 SECRET_KEY = str(os.getenv('PCDENOTES_SECRET_KEY'))
29
30 # SECURITY WARNING: don't run with debug turned on in production!
31 DEBUG = str(os.getenv('PCDENOTES_DEBUG', 'false')).lower() == 'true'
32
33 ALLOWED_HOSTS = ['*']
34
35
36 # Application definition
37
38 INSTALLED_APPS = [
39 'django.contrib.admin',
40 'django.contrib.auth',
41 'django.contrib.contenttypes',
42 'django.contrib.sessions',
43 'django.contrib.messages',
44 'django.contrib.staticfiles',
45 'markdownify.apps.MarkdownifyConfig',
46 'notes',
47 ]
48
49 MIDDLEWARE = [
50 'django.middleware.security.SecurityMiddleware',
51 'django.contrib.sessions.middleware.SessionMiddleware',
52 'django.middleware.common.CommonMiddleware',
53 'django.middleware.csrf.CsrfViewMiddleware',
54 'django.contrib.auth.middleware.AuthenticationMiddleware',
55 'django.contrib.messages.middleware.MessageMiddleware',
56 'django.middleware.clickjacking.XFrameOptionsMiddleware',
57 ]
58
59 ROOT_URLCONF = 'pcdenotes.urls'
60
61 TEMPLATES = [
62 {
63 'BACKEND': 'django.template.backends.django.DjangoTemplates',
64 'DIRS': [],
65 'APP_DIRS': True,
66 'OPTIONS': {
67 'context_processors': [
68 'django.template.context_processors.debug',
69 'django.template.context_processors.request',
70 'django.contrib.auth.context_processors.auth',
71 'django.contrib.messages.context_processors.messages',
72 ],
73 },
74 },
75 ]
76
77 WSGI_APPLICATION = 'pcdenotes.wsgi.application'
78
79
80 # Database
81 # https://docs.djangoproject.com/en/3.2/ref/settings/#databases
82
83 DATABASES = {
84 'default': {
85 'ENGINE': 'django.db.backends.sqlite3',
86 'NAME': BASE_DIR / 'db.sqlite3',
87 }
88 }
89
90
91 # Password validation
92 # https://docs.djangoproject.com/en/3.2/ref/settings/#auth-password-validators
93
94 AUTH_PASSWORD_VALIDATORS = [
95 {
96 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
97 },
98 {
99 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
100 },
101 {
102 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
103 },
104 {
105 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
106 },
107 ]
108
109
110 # Internationalization
111 # https://docs.djangoproject.com/en/3.2/topics/i18n/
112
113 LANGUAGE_CODE = 'en-us'
114
115 TIME_ZONE = 'UTC'
116
117 USE_I18N = True
118
119 USE_L10N = True
120
121 USE_TZ = True
122
123
124 # Static files (CSS, JavaScript, Images)
125 # https://docs.djangoproject.com/en/3.2/howto/static-files/
126
127 STATIC_URL = '/static/'
128 STATIC_ROOT = BASE_DIR / 'static'
129
130 # Default primary key field type
131 # https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field
132
133 DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
134
135 MARKDOWNIFY = {
136 "default": {
137 #"STRIP": False,
138 "BLEACH": False
139 }
140 }

patrick-canterino.de