Skip to content

Commit 315716d

Browse files
committed
UPDATE: docs links
1 parent 9e73329 commit 315716d

File tree

16 files changed

+38
-38
lines changed

16 files changed

+38
-38
lines changed

02-WEB-APIs/First_API_Django/onlinestore/onlinestore/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""onlinestore URL Configuration
22
33
The `urlpatterns` list routes URLs to views. For more information please see:
4-
https://docs.djangoproject.com/en/2.1/topics/http/urls/
4+
https://docs.djangoproject.com/en/4.1/topics/http/urls/
55
Examples:
66
Function views
77
1. Add an import: from my_app import views

02-WEB-APIs/First_API_Django/onlinestore/onlinestore/wsgi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
It exposes the WSGI callable as a module-level variable named ``application``.
55
66
For more information on this file, see
7-
https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
7+
https://docs.djangoproject.com/en/4.1/howto/deployment/wsgi/
88
"""
99

1010
import os

03-DRF-LEVEL-ONE/job_board/job_board/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""job_board URL Configuration
22
33
The `urlpatterns` list routes URLs to views. For more information please see:
4-
https://docs.djangoproject.com/en/2.1/topics/http/urls/
4+
https://docs.djangoproject.com/en/4.1/topics/http/urls/
55
Examples:
66
Function views
77
1. Add an import: from my_app import views

03-DRF-LEVEL-ONE/job_board/job_board/wsgi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
It exposes the WSGI callable as a module-level variable named ``application``.
55
66
For more information on this file, see
7-
https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
7+
https://docs.djangoproject.com/en/4.1/howto/deployment/wsgi/
88
"""
99

1010
import os

03-DRF-LEVEL-ONE/newsapi/newsapi/settings.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66

77
# Quick-start development settings - unsuitable for production
8-
# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
8+
# See https://docs.djangoproject.com/en/4.1/howto/deployment/checklist/
99

1010
# SECURITY WARNING: keep the secret key used in production secret!
1111
SECRET_KEY = 'a!^#hmmv$9j20hfvi^wer*jd@ufcvb4m6h9%6l6m_l)4_g=c(&'
@@ -64,7 +64,7 @@
6464
DEFAULT_AUTO_FIELD = 'django.db.models.AutoField'
6565

6666
# Database
67-
# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
67+
# https://docs.djangoproject.com/en/4.1/ref/settings/#databases
6868

6969
DATABASES = {
7070
'default': {
@@ -75,7 +75,7 @@
7575

7676

7777
# Password validation
78-
# https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators
78+
# https://docs.djangoproject.com/en/4.1/ref/settings/#auth-password-validators
7979

8080
AUTH_PASSWORD_VALIDATORS = [
8181
{
@@ -94,7 +94,7 @@
9494

9595

9696
# Internationalization
97-
# https://docs.djangoproject.com/en/2.1/topics/i18n/
97+
# https://docs.djangoproject.com/en/4.1/topics/i18n/
9898

9999
LANGUAGE_CODE = 'en-us'
100100

@@ -108,6 +108,6 @@
108108

109109

110110
# Static files (CSS, JavaScript, Images)
111-
# https://docs.djangoproject.com/en/2.1/howto/static-files/
111+
# https://docs.djangoproject.com/en/4.1/howto/static-files/
112112

113113
STATIC_URL = '/static/'

03-DRF-LEVEL-ONE/newsapi/newsapi/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""newsapi URL Configuration
22
33
The `urlpatterns` list routes URLs to views. For more information please see:
4-
https://docs.djangoproject.com/en/2.1/topics/http/urls/
4+
https://docs.djangoproject.com/en/4.1/topics/http/urls/
55
Examples:
66
Function views
77
1. Add an import: from my_app import views

03-DRF-LEVEL-ONE/newsapi/newsapi/wsgi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
It exposes the WSGI callable as a module-level variable named ``application``.
55
66
For more information on this file, see
7-
https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
7+
https://docs.djangoproject.com/en/4.1/howto/deployment/wsgi/
88
"""
99

1010
import os

04-DRF-LEVEL-TWO/ebooksapi/ebooksapi/settings.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
Generated by 'django-admin startproject' using Django 2.1.7.
55
66
For more information on this file, see
7-
https://docs.djangoproject.com/en/2.1/topics/settings/
7+
https://docs.djangoproject.com/en/4.1/topics/settings/
88
99
For the full list of settings and their values, see
10-
https://docs.djangoproject.com/en/2.1/ref/settings/
10+
https://docs.djangoproject.com/en/4.1/ref/settings/
1111
"""
1212

1313
import os
@@ -17,7 +17,7 @@
1717

1818

1919
# Quick-start development settings - unsuitable for production
20-
# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
20+
# See https://docs.djangoproject.com/en/4.1/howto/deployment/checklist/
2121

2222
# SECURITY WARNING: keep the secret key used in production secret!
2323
SECRET_KEY = '-f2(p4z&=)-te2p(k548d31y5*5z399-z(b05p*z!chniw!1_a'
@@ -75,7 +75,7 @@
7575

7676

7777
# Database
78-
# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
78+
# https://docs.djangoproject.com/en/4.1/ref/settings/#databases
7979

8080
DATABASES = {
8181
'default': {
@@ -86,7 +86,7 @@
8686

8787

8888
# Password validation
89-
# https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators
89+
# https://docs.djangoproject.com/en/4.1/ref/settings/#auth-password-validators
9090

9191
AUTH_PASSWORD_VALIDATORS = [
9292
{
@@ -105,7 +105,7 @@
105105

106106

107107
# Internationalization
108-
# https://docs.djangoproject.com/en/2.1/topics/i18n/
108+
# https://docs.djangoproject.com/en/4.1/topics/i18n/
109109

110110
LANGUAGE_CODE = 'en-us'
111111

@@ -119,7 +119,7 @@
119119

120120

121121
# Static files (CSS, JavaScript, Images)
122-
# https://docs.djangoproject.com/en/2.1/howto/static-files/
122+
# https://docs.djangoproject.com/en/4.1/howto/static-files/
123123

124124
STATIC_URL = '/static/'
125125

04-DRF-LEVEL-TWO/ebooksapi/ebooksapi/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""ebooksapi URL Configuration
22
33
The `urlpatterns` list routes URLs to views. For more information please see:
4-
https://docs.djangoproject.com/en/2.1/topics/http/urls/
4+
https://docs.djangoproject.com/en/4.1/topics/http/urls/
55
Examples:
66
Function views
77
1. Add an import: from my_app import views

04-DRF-LEVEL-TWO/ebooksapi/ebooksapi/wsgi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
It exposes the WSGI callable as a module-level variable named ``application``.
55
66
For more information on this file, see
7-
https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
7+
https://docs.djangoproject.com/en/4.1/howto/deployment/wsgi/
88
"""
99

1010
import os

04-DRF-LEVEL-TWO/quotesapi/quotesapi/settings.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
Generated by 'django-admin startproject' using Django 2.1.7.
55
66
For more information on this file, see
7-
https://docs.djangoproject.com/en/2.1/topics/settings/
7+
https://docs.djangoproject.com/en/4.1/topics/settings/
88
99
For the full list of settings and their values, see
10-
https://docs.djangoproject.com/en/2.1/ref/settings/
10+
https://docs.djangoproject.com/en/4.1/ref/settings/
1111
"""
1212

1313
import os
@@ -17,7 +17,7 @@
1717

1818

1919
# Quick-start development settings - unsuitable for production
20-
# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
20+
# See https://docs.djangoproject.com/en/4.1/howto/deployment/checklist/
2121

2222
# SECURITY WARNING: keep the secret key used in production secret!
2323
SECRET_KEY = 'jh012i-1rehi+vsmgbzc5kant^-6(sk_!n+a5lj(_k3@g2@)*!'
@@ -75,7 +75,7 @@
7575

7676

7777
# Database
78-
# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
78+
# https://docs.djangoproject.com/en/4.1/ref/settings/#databases
7979

8080
DATABASES = {
8181
'default': {
@@ -86,7 +86,7 @@
8686

8787

8888
# Password validation
89-
# https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators
89+
# https://docs.djangoproject.com/en/4.1/ref/settings/#auth-password-validators
9090

9191
AUTH_PASSWORD_VALIDATORS = [
9292
{
@@ -105,7 +105,7 @@
105105

106106

107107
# Internationalization
108-
# https://docs.djangoproject.com/en/2.1/topics/i18n/
108+
# https://docs.djangoproject.com/en/4.1/topics/i18n/
109109

110110
LANGUAGE_CODE = 'en-us'
111111

@@ -119,7 +119,7 @@
119119

120120

121121
# Static files (CSS, JavaScript, Images)
122-
# https://docs.djangoproject.com/en/2.1/howto/static-files/
122+
# https://docs.djangoproject.com/en/4.1/howto/static-files/
123123

124124
STATIC_URL = '/static/'
125125

04-DRF-LEVEL-TWO/quotesapi/quotesapi/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""quotesapi URL Configuration
22
33
The `urlpatterns` list routes URLs to views. For more information please see:
4-
https://docs.djangoproject.com/en/2.1/topics/http/urls/
4+
https://docs.djangoproject.com/en/4.1/topics/http/urls/
55
Examples:
66
Function views
77
1. Add an import: from my_app import views

04-DRF-LEVEL-TWO/quotesapi/quotesapi/wsgi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
It exposes the WSGI callable as a module-level variable named ``application``.
55
66
For more information on this file, see
7-
https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
7+
https://docs.djangoproject.com/en/4.1/howto/deployment/wsgi/
88
"""
99

1010
import os

05-DRF-LEVEL-THREE/profilesapi/profilesapi/settings.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
Generated by 'django-admin startproject' using Django 2.1.7.
55
66
For more information on this file, see
7-
https://docs.djangoproject.com/en/2.1/topics/settings/
7+
https://docs.djangoproject.com/en/4.1/topics/settings/
88
99
For the full list of settings and their values, see
10-
https://docs.djangoproject.com/en/2.1/ref/settings/
10+
https://docs.djangoproject.com/en/4.1/ref/settings/
1111
"""
1212

1313
import os
@@ -17,7 +17,7 @@
1717

1818

1919
# Quick-start development settings - unsuitable for production
20-
# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
20+
# See https://docs.djangoproject.com/en/4.1/howto/deployment/checklist/
2121

2222
# SECURITY WARNING: keep the secret key used in production secret!
2323
SECRET_KEY = 'rz+ehi(9^91x1vqmv40o+)&6pcci)0_#!$^7t604na17%q*8js'
@@ -84,7 +84,7 @@
8484

8585

8686
# Database
87-
# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
87+
# https://docs.djangoproject.com/en/4.1/ref/settings/#databases
8888

8989
DATABASES = {
9090
'default': {
@@ -95,7 +95,7 @@
9595

9696

9797
# Password validation
98-
# https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators
98+
# https://docs.djangoproject.com/en/4.1/ref/settings/#auth-password-validators
9999

100100
AUTH_PASSWORD_VALIDATORS = [
101101
{
@@ -114,7 +114,7 @@
114114

115115

116116
# Internationalization
117-
# https://docs.djangoproject.com/en/2.1/topics/i18n/
117+
# https://docs.djangoproject.com/en/4.1/topics/i18n/
118118

119119
LANGUAGE_CODE = 'en-us'
120120

@@ -128,7 +128,7 @@
128128

129129

130130
# Static files (CSS, JavaScript, Images)
131-
# https://docs.djangoproject.com/en/2.1/howto/static-files/
131+
# https://docs.djangoproject.com/en/4.1/howto/static-files/
132132

133133
STATIC_URL = '/static/'
134134

05-DRF-LEVEL-THREE/profilesapi/profilesapi/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""profilesapi URL Configuration
22
33
The `urlpatterns` list routes URLs to views. For more information please see:
4-
https://docs.djangoproject.com/en/2.1/topics/http/urls/
4+
https://docs.djangoproject.com/en/4.1/topics/http/urls/
55
Examples:
66
Function views
77
1. Add an import: from my_app import views

05-DRF-LEVEL-THREE/profilesapi/profilesapi/wsgi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
It exposes the WSGI callable as a module-level variable named ``application``.
55
66
For more information on this file, see
7-
https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
7+
https://docs.djangoproject.com/en/4.1/howto/deployment/wsgi/
88
"""
99

1010
import os

0 commit comments

Comments
 (0)