Hubro
Hubro

Reputation: 59323

How to enable collaboration on local Cloud9 install?

Me and a friend are collaborating on a project using a Cloud9 SSH project, but we're not happy with the latency. We have tried installing Cloud9 directly on the server, but the collaboration option disappeared.

Is collaboration possible to enable on a custom Cloud9 installation? If so, how?

I imagine it's a plugin with some configuration required, so it's left out by default. I can't find anything when Googling though.


Edit: I found the collab plugin repo: https://github.com/c9/c9.ide.collab

Doesn't have a README file though, so I'm still just as stuck.

Upvotes: 1

Views: 821

Answers (1)

xstnc
xstnc

Reputation: 136

You can add the --collab flag while launching the server.js

Example:

nodejs server.js --collab 

Upvotes: 2

Related Questions