~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to README

  • Committer: Eric Herman
  • Date: 2008-12-07 12:17:49 UTC
  • mto: (656.1.14 devel)
  • mto: This revision was merged to the branch mainline in revision 670.
  • Revision ID: eric@mysql.com-20081207121749-kv5yp8o1u3fxb0lz
added some essential notes to the README

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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!