Skip to content

Instantly share code, notes, and snippets.

@ChristopherDosin
Created July 17, 2018 01:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChristopherDosin/eb39a97e85dea2f0aff1e31756b7bec8 to your computer and use it in GitHub Desktop.
Save ChristopherDosin/eb39a97e85dea2f0aff1e31756b7bec8 to your computer and use it in GitHub Desktop.
Simple script to install Cloud9 on an Ubuntu Server
#!/bin/bash
# Simple script to install Cloud9 on an Ubuntu Server
apt-get update && apt-get install build-essential -y
apt-get install git -y
apt-get install nodejs -y
apt-get install npm -y
apt-get install python2.7 python-pip -y
# cd ~/to/your/directory
git clone https://github.com/c9/core.git c9sdk
c9sdk/scripts/install-sdk.sh
#nodejs c9sdk/server.js -p 8080 -a -w ~~/your/directory/workspace
nodejs c9sdk/server.js -p 8080 -a :
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment