Forked from RIAEvangelist/Install Cloud9 on local or remote computer, server, or raspberry pi
Last active
April 30, 2018 04:51
-
-
Save initcron/a5a76cd2dacf43b8f60a57d47dcf4223 to your computer and use it in GitHub Desktop.
install_cloud9_ubuntu.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Ref: https://github.com/c9/core for installing c9 | |
apt-get update | |
apt-get install -yq python-software-properties python make build-essential g++ curl libssl-dev apache2-utils git libxml2-dev | |
cd ~ | |
mkdir ~/codespaces | |
cd ~/codespaces | |
git clone https://github.com/c9/core | |
git clone https://github.com/creationix/nvm.git ~/.nvm | |
source ~/.nvm/nvm.sh | |
#install some version of Node you want | |
nvm install 0.10 | |
#install and start cloud9 | |
cd core | |
npm install packager | |
npm install | |
scripts/install-sdk.sh | |
node server.js -l 0.0.0.0 -p 8080 -a codespaces:codespaces |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment