This project is an issue tracker project. It enables the user to perform the following actions:
pip install virtualenvwrapper, this will enable you to
create virtual environmentsmkvirtualenv {{ Name of the virtual environment}} ,
the name can be anything example mkvirtualenv venv
workon {{ Name of the virtual environment }} ,
to activate that virtual environment.pip install -r requirements.txt,
to install the dependencies for the project.
.env.sample file, copy the contents and create
a .env file, then paste the contents into it. Those
are your environment variables. You can modify the values if you wish,
but ensure that the keys are the same.python manage.py makemigrations,
to create the first database migrations and then run
python manage.py migrate to commit the migrations into the database.
python manage.py runserver localhost:8000
The server should start running.