Added blog and organizer app into setting.py config
parent
cf9df791ea
commit
cec7e99fd8
|
@ -1,3 +1,7 @@
|
||||||
# Read Me
|
# Read Me
|
||||||
|
|
||||||
This is repository to practise Python + Django following **Web Development in Python with Django: Building Backend Web Applications and APIs with Django**
|
This is repository to practise Python + Django following **Web Development in Python with Django: Building Backend Web Applications and APIs with Django**
|
||||||
|
|
||||||
|
## Add app in django
|
||||||
|
|
||||||
|
* add in `config/settings.py`
|
|
@ -37,6 +37,9 @@ INSTALLED_APPS = [
|
||||||
'django.contrib.sessions',
|
'django.contrib.sessions',
|
||||||
'django.contrib.messages',
|
'django.contrib.messages',
|
||||||
'django.contrib.staticfiles',
|
'django.contrib.staticfiles',
|
||||||
|
# first party
|
||||||
|
'blog.apps.BlogConfig',
|
||||||
|
'organizer.apps.OrganizerConfig',
|
||||||
]
|
]
|
||||||
|
|
||||||
MIDDLEWARE = [
|
MIDDLEWARE = [
|
||||||
|
|
Loading…
Reference in New Issue