File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change 2828 'default' : {
2929 # for SQLite3
3030 'ENGINE' : 'django.db.backends.sqlite3' ,
31- 'NAME' : BASE_DIR / 'db.sqlite3' ,
3231
3332 # for MySQl
3433 #'ENGINE': 'django.db.backends.mysql',
3534 #'PORT': '3306',
3635
3736 # for PostgreSQL
3837 # "ENGINE": "django.db.backends.postgresql",
39- # 'PORT': '5432', # for PostgreSQL
38+ # 'PORT': '5432',
4039
4140 'NAME' : 'crm_db' ,
4241 'USER' : 'crm_user' ,
4342 'PASSWORD' : 'crmpass' ,
4443 'HOST' : 'localhost' ,
45-
4644 }
4745}
4846
158156# Password validation
159157AUTH_PASSWORD_VALIDATORS = [
160158 {
161- 'NAME' : 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator' ,
159+ 'NAME' : 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator'
162160 },
163161 {
164- 'NAME' : 'django.contrib.auth.password_validation.MinimumLengthValidator' ,
162+ 'NAME' : 'django.contrib.auth.password_validation.MinimumLengthValidator'
165163 },
166164 {
167- 'NAME' : 'django.contrib.auth.password_validation.CommonPasswordValidator' ,
165+ 'NAME' : 'django.contrib.auth.password_validation.CommonPasswordValidator'
168166 },
169167 {
170- 'NAME' : 'django.contrib.auth.password_validation.NumericPasswordValidator' ,
171- },
168+ 'NAME' : 'django.contrib.auth.password_validation.NumericPasswordValidator'
169+ }
172170]
173171
174172# Static files (CSS, JavaScript, Images)
You can’t perform that action at this time.
0 commit comments