Delegate management and default zoom renaming and breakout rooms arrangement for Birla MUN'21 at Birla Vidya Niketan, New Delhi
In case you want to run a development server on your local machine, then follow the following steps.
Clone the repository
git clone https://github.com/Pancham1603/birla-mun-2021.git
cd birla-mun-2021
Be sure to have python >=3.6 installed in your machine and added to $PATH
for *nix and to environment variables
in Windows. Next create a virtual environment by installing and using virtualenv
pip install virtualenv
And then create a virtual environment
virtualenv somerandomname
Finally, activate the env
source somerandomname/bin/activate #For mac os and linux
somerandomname\Scripts\activate #For Windows; use backslash
Use pip to install all the modules and libraries required for medSCHED in the required.txt
pip install -r requirements.txt
Before running make sure that port 5000 is free or you can use any other port by passing the port number
in the run function. You can start the development server like so
python3 main.py # For unix
python main.py # For Windows