Author: justi9
Date: 2007-10-13 19:43:12 -0400 (Sat, 13 Oct 2007)
New Revision: 1054
Added:
mgmt/README
Log:
Add some simple instructions for using the devel environment.
Added: mgmt/README
===================================================================
--- mgmt/README (rev 0)
+++ mgmt/README 2007-10-13 23:43:12 UTC (rev 1054)
@@ -0,0 +1,24 @@
+This is the development environment for the Red Hat messaging
+management suite.
+
+To use the development environment, you need to source the
+etc/devel.profile file in your shell. Then commands such as
+cumin-test can be run.
+
+For instance:
+
+ $ svn co
https://svn.jboss.org/repos/rhmessaging/mgmt/
+ $ cd mgmt
+ $ . etc/devel.profile
+ $ cumin-test
+
+For your convenience, there is a script, bin/devel, which you can use
+to start up the devel environment. I recommend putting a small
+wrapper script like that below somewhere in your path:
+
+ $ cat ~/bin/mgmt
+ #!/bin/bash
+
+ export DEVEL_HOME="${HOME}/mgmt"
+
+ exec "${DEVEL_HOME}/bin/devel"