From ea7495c6ec1f06460aedde24a7552cdbc1934040 Mon Sep 17 00:00:00 2001 From: Julian Lampert Date: Wed, 23 Sep 2015 21:29:03 +0200 Subject: [PATCH] Updated Home (markdown) --- Home.md | 50 +++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 49 insertions(+), 1 deletion(-) diff --git a/Home.md b/Home.md index 16f89c0..1fbdbbd 100644 --- a/Home.md +++ b/Home.md @@ -1 +1,49 @@ -Welcome to the core wiki! +#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.