Merge lp:~hingo/drizzle/drizzle-README-update into lp:~drizzle-trunk/drizzle/development

Proposed by Henrik Ingo
Status: Merged
Approved by: Brian Aker
Approved revision: 2371
Merged at revision: 2412
Proposed branch: lp:~hingo/drizzle/drizzle-README-update
Merge into: lp:~drizzle-trunk/drizzle/development
Diff against target: 104 lines (+54/-19)
1 file modified
README (+54/-19)
To merge this branch: bzr merge lp:~hingo/drizzle/drizzle-README-update
Reviewer Review Type Date Requested Status
Brian Aker Approve
Review via email: mp+73225@code.launchpad.net

Description of the change

Updated README with current links + instructions to do apt-get build-dep drizzle or yum-builddep drizzle before doing your first source build.

To post a comment you must log in.
Revision history for this message
Brian Aker (brianaker) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'README'
2--- README 2011-02-11 05:16:33 +0000
3+++ README 2011-08-29 12:34:27 +0000
4@@ -3,12 +3,16 @@
5
6 A Lightweight SQL Database for Cloud and Web
7
8-http://www.drizzle.org
9-#drizzle on FreeNode
10-
11-Drizzle is a community-driven open source project that is forked from the popular MySQL database.
12-
13-The Drizzle team has removed non-essential code, re-factored the remaining code and modernized the code base moving to C++.
14+WWW: http://www.drizzle.org
15+IRC: #drizzle on FreeNode
16+Mailing-list: https://launchpad.net/~drizzle-discuss
17+
18+
19+Drizzle is a community-driven open source project that is forked from the
20+popular MySQL database.
21+
22+The Drizzle team has removed non-essential code, re-factored the remaining code
23+and modernized the code base moving to C++.
24
25 Charter
26 * A database optimized for Cloud infrastructure and Web applications
27@@ -22,13 +26,41 @@
28 * Reliable, ACID transactional
29
30
31-The most current information is on the wiki, but are some essential links
32-and notes for getting started.
33-
34-http://drizzle.org/wiki/
35-https://launchpad.net/drizzle
36-
37-Compiling:
38+Documentation and support
39+-------------------------
40+
41+Documentation on building, installing and using Drizzle is available at
42+http://docs.drizzle.org/
43+
44+If the documentation doesn't answer your questions, please use
45+ - IRC
46+ - mailing list
47+ - https://answers.launchpad.net/drizzle
48+...for community support.
49+
50+Commercial troubleshooting and 24/7 production support is available from a few
51+vendors at http://www.drizzle.org/content/support-and-services
52+
53+
54+Compiling from source
55+---------------------
56+
57+### Installing library dependencies:
58+# The easiest and recommended way is to use your package manager to install
59+# all build dependencies for the drizzle package. This will always
60+# install an up to date list of dependencies.
61+# If drizzle is not yet included in your distribution, then please configure
62+# your package manager to use these Drizzle repositories:
63+# DEB: http://docs.drizzle.org/installing/ubuntu.html
64+# RPM: http://docs.drizzle.org/installing/redhat.html
65+
66+
67+# Then start the build process with executing
68+sudo apt-get build-dep drizzle
69+# or
70+yum-builddep drizzle
71+
72+### Compiling:
73 # If you got the source from bzr, run:
74 ./config/autorun.sh
75 # The following steps are the same regardless of where you got the source
76@@ -38,18 +70,21 @@
77 echo "FAIL $?"
78
79 More information on compiling can be found at:
80-http://drizzle.org/wiki/Compiling
81+http://docs.drizzle.org/installing/from_source.html
82
83-Running Drizzle:
84+### Running Drizzle:
85 # be sure you configured with a prefix before running make install
86 make install
87 cd ${HOME}/builds/drizzle
88-./sbin/drizzled --no-defaults --port=XXXX \
89+./sbin/drizzled --no-defaults --mysql-protocol.port=3306 \
90 --basedir=$PWD --datadir=$PWD/var \
91 >> $PWD/var/drizzle.err 2>&1 &
92
93-See also:
94-http://drizzle.org/wiki/Starting_drizzled
95-http://drizzle.org/wiki/Contributing_Code
96+# See also:
97+# http://docs.drizzle.org/installing/from_source.html#dependencies
98+# http://wiki.drizzle.org/Starting_drizzled
99+# http://docs.drizzle.org/contributing/introduction.html
100+
101
102 Cheers!
103+ - The Drizzle team
104\ No newline at end of file