Starting a basic app
[bigly] / src / bigly / settings.py
1 """
2 Django settings for bigly project.
3
4 Generated by 'django-admin startproject' using Django 3.2.6.
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 import os.path
14 from pathlib import Path
15
16 # Build paths inside the project like this: BASE_DIR / 'subdir'.
17 BASE_DIR = Path(__file__).resolve().parent.parent
18
19
20 # Quick-start development settings - unsuitable for production
21 # See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/
22
23 # SECURITY WARNING: keep the secret key used in production secret!
24 SECRET_KEY = 'django-insecure-7^29bo%t0#u21-vc!q#1kbkwpuz8vtt3mjc2t%9zt4!1ma5egs'
25
26 # SECURITY WARNING: don't run with debug turned on in production!
27 DEBUG = True
28
29 ALLOWED_HOSTS = []
30
31
32 # Application definition
33
34 INSTALLED_APPS = [
35     'django.contrib.admin',
36     'django.contrib.auth',
37     'django.contrib.contenttypes',
38     'django.contrib.sessions',
39     'django.contrib.messages',
40     'django.contrib.staticfiles',
41
42     'rest_framework',
43
44     'bigly',
45 ]
46
47 MIDDLEWARE = [
48     'django.middleware.security.SecurityMiddleware',
49     'django.contrib.sessions.middleware.SessionMiddleware',
50     'django.middleware.common.CommonMiddleware',
51     'django.middleware.csrf.CsrfViewMiddleware',
52     'django.contrib.auth.middleware.AuthenticationMiddleware',
53     'django.contrib.messages.middleware.MessageMiddleware',
54     'django.middleware.clickjacking.XFrameOptionsMiddleware',
55 ]
56
57 ROOT_URLCONF = 'bigly.urls'
58
59 TEMPLATES = [
60     {
61         'BACKEND': 'django.template.backends.django.DjangoTemplates',
62         'DIRS': [],
63         'APP_DIRS': True,
64         'OPTIONS': {
65             'context_processors': [
66                 'django.template.context_processors.debug',
67                 'django.template.context_processors.request',
68                 'django.contrib.auth.context_processors.auth',
69                 'django.contrib.messages.context_processors.messages',
70             ],
71         },
72     },
73 ]
74
75 WSGI_APPLICATION = 'bigly.wsgi.application'
76
77
78 # Database
79 # https://docs.djangoproject.com/en/3.2/ref/settings/#databases
80
81 DATABASES = {
82     'default': {
83         'ENGINE': 'django.db.backends.sqlite3',
84         'NAME': BASE_DIR / 'db.sqlite3',
85     }
86 }
87
88
89 # Password validation
90 # https://docs.djangoproject.com/en/3.2/ref/settings/#auth-password-validators
91
92 AUTH_PASSWORD_VALIDATORS = [
93     {
94         'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
95     },
96     {
97         'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
98     },
99     {
100         'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
101     },
102     {
103         'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
104     },
105 ]
106
107
108 # Internationalization
109 # https://docs.djangoproject.com/en/3.2/topics/i18n/
110
111 LANGUAGE_CODE = 'en-us'
112
113 TIME_ZONE = 'UTC'
114
115 USE_I18N = True
116
117 USE_L10N = True
118
119 USE_TZ = True
120
121
122 # Static files (CSS, JavaScript, Images)
123 # https://docs.djangoproject.com/en/3.2/howto/static-files/
124
125 STATIC_ROOT = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'static')
126 STATIC_URL = '/static/'
127
128 # Default primary key field type
129 # https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field
130
131 DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'