Created
July 17, 2018 01:15
-
-
Save ChristopherDosin/eb39a97e85dea2f0aff1e31756b7bec8 to your computer and use it in GitHub Desktop.
Simple script to install Cloud9 on an Ubuntu Server
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 | |
# 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