Djangosite
Website of duggal Industries.
$ sudo apt-get install virtualenv Create a virtual environment
$ mkdir somename
$ cd somename
$ virtualenv .
$ source bin/activate
use deactivate command whenever needed
Clone the repository
$ cd Djangosite
$ pip install -r requirements.txt
Open the settings file in favourite browser
path : Djangosite/duggal/duggal/settings.py
Edits
add the specifications of your email in line 38-39
add the specifications of your database in line 101-107
when in Djangosite/duggal
$ python manage.py makemigrations
$ python manage.py migrate
$ python manage.py runserver
Open the browser for the link
127.0.0.1:8090