~drizzle-trunk/drizzle/development

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:
8
# bzr branch lp:drizzle ; cd drizzle;
9
./config/autorun.sh &&
10
./configure --prefix=${HOME}/builds/drizzle && 
11
make &&
12
make test ||
13
echo "FAIL $?"
14
15
More information on compiling can be found at:
16
http://drizzle.org/wiki/Compiling
17
18
Running Drizzle:
19
# be sure you configured with a prefix before running make install
20
make install
21
cd ${HOME}/builds/drizzle
22
./sbin/drizzled --no-defaults --port=XXXX \
23
     --basedir=$PWD --datadir=$PWD/var \
24
     >> $PWD/var/drizzle.err 2>&1 &
25
26
See also:
27
http://drizzle.org/wiki/Starting_drizzled
28
http://drizzle.org/wiki/Contributing_Code
29
30
Cheers!