File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 25
25
SECRET_KEY = \
26
26
'django-insecure-ccow$tz_=9%dxu4(0%^(z%nx32#s@(zt9$ih@)5l54yny)wm-0'
27
27
28
- # SECURITY WARNING: don't run with debug turned on in production!
28
+ # SECURITY WARNING: don't run with debug on in production!
29
29
DEBUG = True
30
30
31
31
ALLOWED_HOSTS = ['localhost' , 'brody8991-8000.theiadockernext-1-labs-prod-theiak8s-4-tor01.proxy.cognitiveclass.ai' ]
61
61
TEMPLATES = [
62
62
{
63
63
'BACKEND' : 'django.template.backends.django.DjangoTemplates' ,
64
- 'DIRS' : [os .path .join (BASE_DIR , 'frontend/static' )], # Fix Line 64: E231 missing whitespace after ','
64
+ 'DIRS' : [os .path .join (BASE_DIR , 'frontend/static' )], # Corrected spacing
65
65
'APP_DIRS' : True ,
66
66
'OPTIONS' : {
67
67
'context_processors' : [
89
89
90
90
AUTH_PASSWORD_VALIDATORS = [
91
91
{
92
- 'NAME' : ( # Fix Line 93: E501 line too long (83 > 79 characters)
92
+ 'NAME' : (
93
93
'django.contrib.auth.password_validation.UserAttributeSimilarityValidator'
94
- ),
94
+ ), # User similarity validator
95
95
},
96
96
{
97
97
'NAME' :
136
136
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
137
137
138
138
STATICFILES_DIRS = [
139
- os .path .join (BASE_DIR , 'frontend/static' ) # Fix Line 138: E231 missing whitespace after ','
139
+ os .path .join (BASE_DIR , 'frontend/static' ) # Static files directory
140
140
]
141
- # Fix Line 140: W391 blank line at end of file (removed the blank line)
You can’t perform that action at this time.
0 commit comments