Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 617 Bytes

File metadata and controls

19 lines (15 loc) · 617 Bytes

Simple Blog

Simple Django 2.1 Blog Implementation

Setup

  • Create a virtual environment
  • Activate the environment
  • Pull the code
  • Install the required packages

    pip install -r requirements.txt

  • Setup PostgreSQL db and update db details to the setting.py file(change to any other db as per preference
  • python manage.py makemigrations polls
  • python manage.py migrate
  • python manage.py runserver

If you wish to access the admin panel

  • Create a superuser

    python manage.py createsuperuser