
Django Building a blog | Designing blog data Schema
Below is for Ubuntu. source djangoTestEnv/bin/activate cd Desktop django-admin startproject blogSite cd blogSite python manage.py startapp myBlog Go to blogSite/blogSite/settings.py and add 'myBlog' in INSTALLED_APPS section. It should look similar to belowINSTALLED_APPS = [ ...