Cloud9 3.0 SDK for Plugin Development
 
 
 
 
 
 
Go to file
nightwing e775e0c03e add debugging code for readFile returning metadata c9/core+71 2015-06-10 11:04:16 +04:00
bin
build update windows version of setup-local-dev script 2015-05-10 20:42:49 +04:00
configs Merge pull request +7451 from c9/fix/ftp-mount-errorhandling 2015-05-29 11:40:14 +02:00
docs Update CODING_STANDARDS.md 2015-03-18 00:51:39 +01:00
local prevent infinite loop after failed rebuild attempt 2015-05-29 23:47:01 +04:00
node_modules redirect /profile to /profile/:user 2015-06-09 08:52:21 +00:00
plugins add debugging code for readFile returning metadata c9/core+71 2015-06-10 11:04:16 +04:00
scripts create nw.js shortcuts on windows 2015-06-03 23:12:18 +04:00
settings move collab-server back to collab plugin to allow splitting it into smaller parts 2015-05-28 19:12:00 +00:00
test add testing dependencies to sdk package.json 2015-05-10 04:26:22 +04:00
.eslintrc Support new eslint 0.20.0 2015-05-05 17:21:13 +02:00
.gitignore Avoid accidentally editing generated file... 2015-06-03 10:03:31 +00:00
.nakignore update nakignore 2015-04-16 19:29:37 +04:00
LICENSE
README.md use public url in readme 2015-05-10 16:48:50 +04:00
package.json Revert "Fix/rvm" 2015-06-09 16:51:02 +02:00
server.js Revert "Merge revert 7061 profile 001 1 create project" 2015-05-07 14:09:44 +02:00

README.md

Cloud9 3.0 SDK for Plugin Development

This is the core repository for the Cloud9 v3 SDK. The SDK allows you to run a version of Cloud9 that allows you to develop plugins and create a custom IDE based on Cloud9.

Project Status: ALPHA

During the alpha stage, expect many things to break, not work or simply fail.

Creating Plugins

The best and easiest way to create plugins is on c9.io. Please check out this tutorial for how to get started writing plugins.

We also have a tutorial for how to get started working on the core plugins. Check out that tutorial here.

Documentation

We have several documentation resources for you:

SDK documentationhttp://cloud9-sdk.readme.io/v0.1/docs
API documentationhttp://docs.c9.io/api
User documentationhttp://docs.c9.io

Please joing the mailinglist to get support or give support to the growing community of plugin developers: https://groups.google.com/forum/#!forum/cloud9-sdk

Installation

Follow these steps to install the SDK:

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

To update the SDK to the latest version run:

git pull origin master
scripts/install-sdk.sh

Please note that Cloud9 v3 currently requires Node.js 0.12 or 0.10.

Starting Cloud9

Start the Cloud9 as follows:

node server.js

The following options can be used:

--settings       Settings file to use
--help           Show command line options.
-t               Start in test mode
-k               Kill tmux server in test mode
-b               Start the bridge server - to receive commands from the cli  [default: false]
-w               Workspace directory
--port           Port
--debug          Turn debugging on
--listen         IP address of the server
--readonly       Run in read only mode
--packed         Whether to use the packed version.
--auth           Basic Auth username:password
--collab         Whether to enable collab.
--no-cache       Don't use the cached version of CSS

Now visit http://localhost:8181/ide.html to load Cloud9.

Running Tests

Run server side tests with:

npm run test

Run client side tests with:

npm run ctest

Then visit http://localhost:8181/static/test in your browser.

Contributing

We actively encourage and support contributions. We accept pull requests to the core as well as to any of the open source plugins and libraries that we maintain under the c9 organization on GitHub.

Feel free to fork and improve/enhance the Cloud9 SDK and the open source plugins in any way you want. Then please open a pull request. For more information on our contributing guidelines, see our contributing guide: http://cloud9-sdk.readme.io/v0.1/docs/contributing-to-cloud9

To protect the interests of the Cloud9 contributors and users we require contributors to sign a Contributors License Agreement (CLA) before we pull the changes into the main repository. Our CLA is the simplest of agreements, requiring that the contributions you make to an ajax.org project are only those you're allowed to make. This helps us significantly reduce future legal risk for everyone involved. It is easy, helps everyone, takes ten minutes, and only needs to be completed once. There are two versions of the agreement:

  1. The Individual CLA: use this version if you're working on the Cloud9 SDK or open source plugins in your spare time, or can clearly claim ownership of copyright in what you'll be submitting.
  2. The Corporate CLA: have your corporate lawyer review and submit this if your company is going to be contributing to the Cloud9 SDK and/or open source plugins.

If you want to contribute to the Cloud9 SDK and/or open source plugins please go to the online form, fill it out and submit it.

Happy coding, Cloud9