This is a Customer Relationship Management Application made using the django
framework in Python
, HTML
, CSS
and Javascript
.
Dipto Bhattacharjee
1.0.0
Python
(version=3.11.3)Django
(version=4.2.4)pip
(version=22.3.1)
- Make sure you have
pip
andPython
installed in your computer. - The python dependencies are mentioned in the file
requirements.txt
, you can run the followingpip install -r requirements.txt
orpython -m pip install -r requirements.txt
in order to install the dependencies. - In terminal, navigate to the
crm
directory and then run the following commandpython manage.py runserver
this will run the website inlocalhost
atPORT=8000
i.e. the service will operate athttp://localhost:8000/
. - In order to terminate the service press
CTRL-C
this will interrupt the currently running process. - In case of deploying at Production change the value of
DEBUG
toFalse
i.e. makeDEBUG = False
in thecrm/settings.py
file.