From e24806c8533e68f798b25296df6bbf9d4e44b996 Mon Sep 17 00:00:00 2001 From: Michael Hilton Date: Sun, 2 Feb 2014 14:27:43 -0800 Subject: [PATCH] Update README.md I have added some of the details that I needed to know to be able to run collabode. Thanks for all the help! --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index e641319..7167adc 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,15 @@ Running Collabode as a headless server * Run the server with ```[path to exported eclipse] -config [full path to config] -data [full path to workspace]``` + + NOTE: for OS X users, the exported Eclipse.app can be run from the command line + with the following command: ```open -n ./Eclipse.app/ --args + -config [full path to + config] -data [full path to workspace]```
+ if you would like to user relative paths, the config and data paths are + relative to ```Eclipse.app/Contents/MacOS/``` + The data path should be an empty dir, Collabode with create a the correct project. + Running Collabode as a two-headed hydra --------------------------------------- @@ -50,3 +59,13 @@ Running Collabode as a two-headed hydra * If needed, use *Window → Show View → Other...* and enable "Collabode Server" * After launching the server, browse to + +Authentication in Collabode +--------------------------------------- + * Once you are running collabode, unless you are in Development mode, when you will be + logged in as admin, you will need to authenticate. + The default authentication scheme for collabode is to allow any username, where the + password is the first 4 chars of the MD5 hash. + * To find the password for any given username, the following command can be used: + ```echo [username] | md5 | cut -c 1-4```
+