Skip to content

Tarandeep97/Blogging-Django-App

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Blogging Django App


Setup

Create Virtual Environment & Activate.

pip install virtualenv
virtualenv venv 
venv/bin/activate (venv\scripts\activate on Windows)

Make Directory for django_project in venv/

mkdir django_project 

Unzip files to venv/django_project & Install the requirements.

pip install -r requirements.txt

Navigate to venv/django_project & make migrations

python manage.py migrate

Run the application.

python manage.py runserver

Navigate to localhost:8000.


Screenshots

Screenshot (238)

Screenshot (241)

Screenshot (243)

Screenshot (242)


References

https://github.com/CoreyMSchafer

https://www.youtube.com/watch?v=UmljXZIypDc&list=PL-osiE80TeTtoQCKZ03TU5fNfx2UY6U4p

https://raturi.in/blog/integrate-disqus-comments-with-django/