Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IDE C9 install locally from GitHub

Tags:

cloud9-ide

do you have any "how-to" for that?

like image 422
Roman Mandeleil Avatar asked Mar 15 '15 10:03

Roman Mandeleil


1 Answers

Installing cloud9 sdk is much simpler now. Make sure you have nodejs and git installed.

Then run

git clone https://github.com/c9/core sdk
cd sdk
./scripts/install-sdk.sh

To launch cloud9 use

node server.js -p 8181 -l 0.0.0.0 -a :

This works on windows too, when running from cygwin or msys (which comes with default git installation). If you do not have python2.7 and visual studio installed npm will not be able to build pty.js and terminals won't work, but everything else will work normally. On windows there is also bin/launch.bat script to launch cloud9 from explorer gui

like image 164
a user Avatar answered Oct 18 '22 01:10

a user