Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 671 Bytes

File metadata and controls

33 lines (22 loc) · 671 Bytes

Tech Stack 🛠

  • ReactJs
  • Material UI
  • Django

Running App

Setup project manually by running the following commands:

Set up backend:

  1. Change directory to /app directory

    cd backend/

  2. Install all backend project dependencies

    pip install -r requirements.txt

  3. Run migrations

    python manage.py makemigrations >python manage.py migrate

  4. Start server

    python manage.py runserver -

Set up frontend:

  1. Change directory to /app directory

    cd frontend/

  2. Run npm install to install all frontend project dependencies ( Assuming you have npm installed )

    npm i

  3. run frontend development client

    npm start