summaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorJeffrey C. Ollie <jeff@ocjtech.us>2008-12-04 11:05:43 -0600
committerJeffrey C. Ollie <jeff@ocjtech.us>2008-12-04 11:05:43 -0600
commit60e0055f764ebdb47c6f21fbe31ff3e426f88a12 (patch)
tree4715743bf930accce1c611006ab72f7c5293d35f /README
downloadcvsmessaging-60e0055f764ebdb47c6f21fbe31ff3e426f88a12.tar.gz
cvsmessaging-60e0055f764ebdb47c6f21fbe31ff3e426f88a12.tar.xz
cvsmessaging-60e0055f764ebdb47c6f21fbe31ff3e426f88a12.zip
Initial testing.
Diffstat (limited to 'README')
-rw-r--r--README37
1 files changed, 37 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..8bd859f
--- /dev/null
+++ b/README
@@ -0,0 +1,37 @@
+Really basic instructions:
+
+1. Make sure qpidd is running
+
+2. set up queues:
+
+ ./declare-queues
+
+3. run consumer
+
+ ./loginfo-consumer
+
+4. Setup a CVS repository and create an "example" project
+
+ cvs -d ~/testrepo init
+ cvs -c ~/testrepo co CVSROOT
+ cd CVSROOT
+
+ edit "loginfo" and add this line
+
+ ALL /path/to/loginfo-producer
+
+ cvs ci -m "Add loginfo hook"
+
+ mkdir ~/testrepo/example
+
+ edit "modules" and add this line
+
+ example example
+
+ cd ..
+
+ cvs -d ~/testrepo co example
+ cd example
+ echo "a" > a.txt
+ cvs add a.txt
+ cvs ci -m "test"