summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn O. Pearce <sop@google.com>2009-05-10 16:21:05 -0700
committerShawn O. Pearce <sop@google.com>2009-05-10 16:21:05 -0700
commit06b48c3f04fcf4394a26cffd75c81b5071279a47 (patch)
treee6d22d3307b6173a94358ed9d63689b74f91a8c0
parentbad75616e1d01dee25807981e11be86ddba97b19 (diff)
Note in the developer install guides that you need to run other steps
You also have to setup a full Gerrit instance, possibly with SSH keys and so forth. Signed-off-by: Shawn O. Pearce <sop@google.com>
-rw-r--r--Documentation/dev-eclipse.txt28
-rw-r--r--Documentation/dev-readme.txt11
2 files changed, 39 insertions, 0 deletions
diff --git a/Documentation/dev-eclipse.txt b/Documentation/dev-eclipse.txt
index 7a63ba9a62..40205ec7f1 100644
--- a/Documentation/dev-eclipse.txt
+++ b/Documentation/dev-eclipse.txt
@@ -87,3 +87,31 @@ Open Run->Debug Configurations...
Under Java Application find `gerrit_debug` (not Mac OS X)
or `gerrit_macos` (Mac OS X only) to start the GWT hosted
mode browser and debug through Eclipse.
+
+SSH Daemon
+~~~~~~~~~~
+
+To get the SSH daemon started when running in hosted mode, you need
+to manually hit the `ssh_info` URL to force the servlet initialize
+and bind the daemon on port 29418 (or whatever you have it configured
+to in `system_config`).
+
+----
+ curl http://localhost:8888/com.google.gerrit.Gerrit/ssh_info
+----
+
+
+Final Setup
+-----------
+
+Since you are creating a Gerrit instance for testing, you need to
+also follow the other steps outlined under "Initialize the Schema"
+in the Installation Guide. Note that the database has already been
+created if you launched Gerrit at least once.
+
+Note that Bouncy Castle Crypto is automatically installed in the
+classpath when debugging with hosted mode, so you will need to
+create SSH keys with `ssh-keygen`.
+
+* link:install.html[Installation Guide]
+* link:project-setup.html[Project Setup]
diff --git a/Documentation/dev-readme.txt b/Documentation/dev-readme.txt
index 49fcf85777..73cc2f6707 100644
--- a/Documentation/dev-readme.txt
+++ b/Documentation/dev-readme.txt
@@ -111,6 +111,17 @@ the JavaScript happens to be.
====
+Final Setup
+-----------
+
+Since you are creating a Gerrit instance for testing, you need to
+also follow the other steps outlined under "Initialize the Schema"
+in the Installation Guide:
+
+* link:install.html[Installation Guide]
+* link:project-setup.html[Project Setup]
+
+
Client-Server RPC
-----------------