Theia Cloud IDE installation scripts.
Node.js and Yarn:
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
sudo apt install -y nodejs
sudo npm i -g corepackAdditional tools and libraries:
sudo apt install build-essential pkg-config \
libx11-dev libxkbfile-dev libsecret-1-devgit clone https://github.com/ecanuto/theia-cloud.git /opt/theia
cd /opt/theia
yarn setupInstall systemd service:
ln -s /opt/theia/lib/theia@.service /etc/systemd/system/theia@.service
systemctl daemon-reload
systemctl enable theia@$USER
systemctl start theia@$USER