summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Anderson <brad@cloudant.com>2010-07-05 13:22:11 -0400
committerAdam Kocoloski <adam@cloudant.com>2010-08-12 11:18:47 -0400
commitf62e1352026d0d94c4908cd989ebd1fe5b0bd30a (patch)
tree212d2ae279a8b72c20212bd9d76f753795ad0e0a
parent328a918ade7cf765ff8b1249241a2e80beeac927 (diff)
add rebar, makefile, readme to chttpd
-rw-r--r--Makefile10
-rw-r--r--README.md21
-rwxr-xr-xrebarbin0 -> 63470 bytes
3 files changed, 31 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 00000000..206156f9
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+all: compile
+
+compile:
+ @./rebar compile
+
+clean:
+ @./rebar clean
+
+compilenative:
+ @./rebar compile erl_opts=native
diff --git a/README.md b/README.md
new file mode 100644
index 00000000..55d642e7
--- /dev/null
+++ b/README.md
@@ -0,0 +1,21 @@
+## chttpd
+
+chttpd is a cluster-aware http layer for CouchDB[1]. It is used in cloudant-core[2] as the http front-end.
+
+### Getting Started
+Dependencies:
+ Erlang R13B-03 (or higher)
+
+Build with rebar:
+ make
+
+### License
+Apache 2.0[3]
+
+### Contact
+ http://cloudant.com
+ info@cloudant.com
+
+[1]: http://couchdb.apache.org
+[2]: http://github.com/cloudant/cloudant-core
+[3]: http://www.apache.org/licenses/LICENSE-2.0.html
diff --git a/rebar b/rebar
new file mode 100755
index 00000000..68e1ec23
--- /dev/null
+++ b/rebar
Binary files differ