This is the management client for the edumeet management server.
Installation example is based on Debian/Ubuntu Linux operating system.
- Install NodeJS (v18.x) and Yarn package manager
- NodeJS (v18.x) Debian/Ubuntu
# Using Ubuntu
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
sudo apt-get install -y nodejs
# Using Debian, as root
curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
apt-get install -y nodejs
- Yarn package manager:
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt update && sudo apt install yarn
- Install all required dependencies
sudo apt update && sudo apt install -y curl git python python3-pip build-essential redis openssl libssl-dev pkg-config
- Clone eduMEET git repository
git clone https://github.com/edumeet/edumeet-management-client.git
cd edumeet-management-client
- Install and run
yarn
# yarn start
PUBLIC_URL="https://edumeet.example.com/cli" yarn start