ServiceCreed

Course Project for CSN-291

Setup

  • Clone the repo

    git clone https://github.com/achintyanath/ServiceCreed.git
    cd ServiceCreed
  • Create a virtual environment (Make sure python is installed in your machine)

    sudo apt install python3-venv
    python3 -m venv env
    source env/bin/activate
  • Install all the requirements and dependencies

    pip install -r requirements.txt
  • Start Django Server

    cd backend
    python manage.py makemigrations
    python manage.py migrate
    python manage.py runserver