~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to README

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
RemoveĀ uint.

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
 
# 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
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!