Backend of a bug tracking application made with django and django rest framework.
- Clone this repository
- Create a virtual environment & activate it
- Install the required python packages with the following commands
$ cd Bug_Manager $ pip install -r requirements.txt
- Install and run redis-server (preferably version 6.0.5)
- Make migrations with the following commands
$ python manage.py makemigrations $ python manage.py migrate
- Run the server with the following command
$ python manage.py runserver
- On line 42 in settings.py file change the DEFAULT_PERMISSION_CLASSES from backend.permissions.NotDisabled to rest_framework.permissions.AllowAny in order to use the api on your local machine without authentication.
- Now visit http://localhost:8000/backend for API root