Clone the project -
$ https://github.com/dhruvdaftary/BlogProject.git
Install all the requirements -
$ pip install -r requirements.txt
Run the following commands -
for linux/mac :
$ python manage.py makemigrations blog
$ python manage.py makemigrations users
$ python manage.py migrate
for windows :
$ python manage.py makemigrations blog
$ python manage.py makemigrations users
$ python manage.py migrate
Create Super user for admin page -
$ python manage.py createsuperuser
Start the project -
for linux/mac :
$ python manage.py runserver
for windows :
$ python manage.py runserver