summaryrefslogtreecommitdiffstats
path: root/README
blob: c0215457ac3d956d0b5bf235ba5d529786c27668 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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 %{sVv}

	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"