~jaypipes/drizzle/subscriber-plugin

665.1.3 by Eric Herman
added some essential notes to the README
1
The most current information is on the wiki, but are some essential links
2
and notes for getting started.
3
4
http://drizzle.org/wiki/
5
https://launchpad.net/drizzle
6
7
Compiling:
992.1.3 by Monty Taylor
Clarified instructions in README.
8
# If you got the source from bzr, run:
9
./config/autorun.sh
10
# The following steps are the same regardless of where you got the source
665.1.3 by Eric Herman
added some essential notes to the README
11
./configure --prefix=${HOME}/builds/drizzle && 
12
make &&
13
make test ||
14
echo "FAIL $?"
15
16
More information on compiling can be found at:
17
http://drizzle.org/wiki/Compiling
18
19
Running Drizzle:
20
# be sure you configured with a prefix before running make install
21
make install
22
cd ${HOME}/builds/drizzle
23
./sbin/drizzled --no-defaults --port=XXXX \
24
     --basedir=$PWD --datadir=$PWD/var \
25
     >> $PWD/var/drizzle.err 2>&1 &
26
27
See also:
28
http://drizzle.org/wiki/Starting_drizzled
29
http://drizzle.org/wiki/Contributing_Code
30
31
Cheers!