Skip to content

Latest commit

 

History

History
25 lines (13 loc) · 528 Bytes

README.md

File metadata and controls

25 lines (13 loc) · 528 Bytes

django_blog_site

This is a example django project developed by me for educational purpose

Getting Started

First clone the repository from Github and switch to the new directory:

$ git clone https://github.com/Itsr1ght/django_blog_site
$ cd django_blog_site

Activate the virtualenv for your project through

$ pipenv shell

$ pipenv install

Then simply apply the migrations:

$ python manage.py migrate

You can now run the development server:

$ python manage.py runserver