This is a basic blog application created using django Inorder to run this blog create a virtual enviornment and install all the required libraries.
virtualenv blog
cd blog
./Scripts/activate
the above command is used on windows
git clone https://github.com/justinjohnymathew/olakudda_django_blog.git
cd olakudda_django_blog
pip install -r requirments.txt
This migrations are done inorder to create database tables depending on the model used
python manage.py makemigrations
python manage.py migrate
Inoreder to access the admin panel a superuser account is necessary
python manage.py create superuser
python manage.py runserver