From cec7e99fd8336900eeddcb177edcdf3994f148b2 Mon Sep 17 00:00:00 2001 From: JasonHomeWorkstationUbuntu Date: Sun, 18 Oct 2020 23:05:59 +1100 Subject: [PATCH] Added blog and organizer app into setting.py config --- README.md | 6 +++++- src/config/settings.py | 3 +++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 32cd14e..375f7d3 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,7 @@ # Read Me -This is repository to practise Python + Django following **Web Development in Python with Django: Building Backend Web Applications and APIs with Django** \ No newline at end of file +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` \ No newline at end of file diff --git a/src/config/settings.py b/src/config/settings.py index 7a227da..4c4e794 100644 --- a/src/config/settings.py +++ b/src/config/settings.py @@ -37,6 +37,9 @@ INSTALLED_APPS = [ 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', + # first party + 'blog.apps.BlogConfig', + 'organizer.apps.OrganizerConfig', ] MIDDLEWARE = [