/IMG_sched

Primary LanguageJavaScript

IMGSched

IMGSched is an application for scheduling meetings and keeping record of them made with the Tech Stack Django, Django Rest Framework, React and Django Channels.

Dependencies

  • python3
  • pip3
  • virtualenv

Setup

  1. Clone the repository
    $ git clone https://github.com/anshuldutt21/IMGSched.git
    $ cd IMG_sched/backend

  2. Install pip3
    sudo apt-install python3-pip

  3. Setup virtual environment
    $ pip3 install virtualenv
    $ virtualenv <env_name>

  4. Activate virtual environment
    $ source <env_name>/bin/activate

  5. Install Django and required libraries
    pip3 install django
    pip3 install social-auth-app-django

  6. Start server
    $ python3 manage.py runserver

  7. In other terminal do,
    $ cd IMG_sched/frontend

  8. Start the React server.
    $ npm start

You are ready to create and invite people for your meetings.