summaryrefslogtreecommitdiffstats
path: root/chat/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'chat/settings.py')
-rw-r--r--chat/settings.py135
1 files changed, 135 insertions, 0 deletions
diff --git a/chat/settings.py b/chat/settings.py
new file mode 100644
index 0000000..653eea9
--- /dev/null
+++ b/chat/settings.py
@@ -0,0 +1,135 @@
1"""
2Django settings for chat project.
3
4Generated by 'django-admin startproject' using Django 5.0.3.
5
6For more information on this file, see
7https://docs.djangoproject.com/en/5.0/topics/settings/
8
9For the full list of settings and their values, see
10https://docs.djangoproject.com/en/5.0/ref/settings/
11"""
12
13from pathlib import Path
14
15# Build paths inside the project like this: BASE_DIR / 'subdir'.
16BASE_DIR = Path(__file__).resolve().parent.parent
17
18
19# Quick-start development settings - unsuitable for production
20# See https://docs.djangoproject.com/en/5.0/howto/deployment/checklist/
21
22# SECURITY WARNING: keep the secret key used in production secret!
23SECRET_KEY = 'django-insecure-dxn^kf6b8qm@#cqg4+jncop793g7*3mgok&p$40di_cxbm+y$3'
24
25# SECURITY WARNING: don't run with debug turned on in production!
26DEBUG = True
27
28ALLOWED_HOSTS = ['*']
29
30
31# Application definition
32
33INSTALLED_APPS = [
34 'chat',
35 'daphne',
36 'django.contrib.admin',
37 'django.contrib.auth',
38 'django.contrib.contenttypes',
39 'django.contrib.sessions',
40 'django.contrib.messages',
41 'django.contrib.staticfiles',
42]
43
44MIDDLEWARE = [
45 'django.middleware.security.SecurityMiddleware',
46 'django.contrib.sessions.middleware.SessionMiddleware',
47 'django.middleware.common.CommonMiddleware',
48 'django.middleware.csrf.CsrfViewMiddleware',
49 'django.contrib.auth.middleware.AuthenticationMiddleware',
50 'django.contrib.messages.middleware.MessageMiddleware',
51 'django.middleware.clickjacking.XFrameOptionsMiddleware',
52]
53
54ROOT_URLCONF = 'chat.urls'
55
56TEMPLATES = [
57 {
58 'BACKEND': 'django.template.backends.django.DjangoTemplates',
59 'DIRS': [],
60 'APP_DIRS': True,
61 'OPTIONS': {
62 'context_processors': [
63 'django.template.context_processors.debug',
64 'django.template.context_processors.request',
65 'django.contrib.auth.context_processors.auth',
66 'django.contrib.messages.context_processors.messages',
67 ],
68 },
69 },
70]
71
72WSGI_APPLICATION = 'chat.wsgi.application'
73ASGI_APPLICATION = 'chat.asgi.application'
74
75
76# Database
77# https://docs.djangoproject.com/en/5.0/ref/settings/#databases
78
79DATABASES = {
80 'default': {
81 'ENGINE': 'django.db.backends.sqlite3',
82 'NAME': BASE_DIR / 'db.sqlite3',
83 }
84}
85
86
87# Password validation
88# https://docs.djangoproject.com/en/5.0/ref/settings/#auth-password-validators
89
90AUTH_PASSWORD_VALIDATORS = [
91 {
92 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
93 },
94 {
95 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
96 },
97 {
98 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
99 },
100 {
101 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
102 },
103]
104
105
106# Internationalization
107# https://docs.djangoproject.com/en/5.0/topics/i18n/
108
109LANGUAGE_CODE = 'en-us'
110
111TIME_ZONE = 'UTC'
112
113USE_I18N = True
114
115USE_TZ = True
116
117
118# Static files (CSS, JavaScript, Images)
119# https://docs.djangoproject.com/en/5.0/howto/static-files/
120
121STATIC_URL = 'static/'
122
123# Default primary key field type
124# https://docs.djangoproject.com/en/5.0/ref/settings/#default-auto-field
125
126DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
127
128CHANNEL_LAYERS = {
129 "default": {
130 "BACKEND": "channels_redis.core.RedisChannelLayer",
131 "CONFIG": {
132 "hosts": [("127.0.0.1", 6379)],
133 },
134 },
135}