Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save initcron/a5a76cd2dacf43b8f60a57d47dcf4223 to your computer and use it in GitHub Desktop.
Save initcron/a5a76cd2dacf43b8f60a57d47dcf4223 to your computer and use it in GitHub Desktop.
install_cloud9_ubuntu.sh
#!/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