Roman Mandeleil
Roman Mandeleil

Reputation: 306

IDE C9 install locally from GitHub

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

Upvotes: 8

Views: 7671

Answers (1)

a user
a user

Reputation: 24149

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

Upvotes: 15

Related Questions