A Complaint Management System built using Python and Django (Indian Oil Corporation Limited (IOCL) internship project)
- Install
Python 3.8.9
- Run
pip install virtualenv
- Create a virtual environment using
virtualenv environment
- Activate the virtual environment using
environment\Scripts\activate
. This will only work for Windows. - Install the dependencies using
pip install -r requirements.txt
- First, create some database migrations using
python manage.py makemigrations core managers
and then migrate them usingpython manage.py migrate
- Create a superuser using the following
python manage.py createsuperuser
and fill the required details. - Admin panel can be accessed at this URL -
http://127.0.0.1:8000/admin/
- Run the server using
python manage.py runserver