-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathREADME
63 lines (42 loc) · 1.33 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
Refuge CouchDB - Alternate couchdb version
------------------------------------------
Refuge CouchDB is a custom distribution of Apache CouchDB using rebar.
The purpose of this project is to provide a CouchDB base for the refuge
project, but it can also be used to deploy an Apache CouchDB based
product on your machine.
Features:
---------
- Apache CouchDB 1.2x based (current trunk right now)
- Geocouch integrated
- Fast json encoding/decoding using ejson module.
- Javascript engine is Spidermonkey 0.8.5
- No dependancies. Modules are statically linked against spidermonkey
and icu provided during installation.
- Fully opensource. All the sources are on refuge GIT repository
(http://refuge.io/code) under Apache License 2.
Supported platforms
-------------------
- Linux 2.6x 32/64
- FreeBSD 8.2 i386/amd64
- MacOS X 10.6/10.7
Download binaries
-----------------
Get binaries from http://rcouch.refuge.io/dl
then do:
$ tar xvzf rcouch-0.3-$PLATFORM.tar.gz -C /
Install from source
-------------------
Requirements:
- Erlang R14x
- Git
- Tested under Linux, FreeBSD, Macosx
- curl
Do install (by default on /opt/rcouch):
$ ./configure
$ make
$ make install
To install in a different directory (e.g. to install in ~/foo):
$ DESTDIR=~/foo make install
To just run dev version:
$ make dev
More info on http://rcouch.refuge.io .