Skip to content

Latest commit

 

History

History
23 lines (22 loc) · 932 Bytes

README.md

File metadata and controls

23 lines (22 loc) · 932 Bytes

Bug_Manager

Backend of a bug tracking application made with django and django rest framework.

Setup instructions

  • 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