summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Helma <ch@in-silico.ch>2009-07-21 13:52:00 +0200
committerChristoph Helma <ch@in-silico.ch>2009-07-21 13:52:00 +0200
commitaa5e0284eb0d01694eff3e6b4f3aa7ddaaccbfbb (patch)
tree742f62b4349fe5a5af1e2200624df6035a230ab5
parent99bdd41894724f9e605c93a577ac84d2450b24c7 (diff)
rack configuration for phusion passenger added
-rw-r--r--.gitignore1
-rw-r--r--README4
-rw-r--r--config.ru5
3 files changed, 10 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..1fb9ef5
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+tmp/*
diff --git a/README b/README
index 7f99ae5..a3d0d9f 100644
--- a/README
+++ b/README
@@ -7,6 +7,10 @@ OpenTox Compounds (Cactus)
* Implements a subset of the OpenTox compounds API (http://opentox.org/wiki/opentox/Structure).
+* Runs at http://webservices.in-silico.ch/compounds
+
+* No documentation yet, have a look at compounds.rb - it should be self-explanatory.
+
* Requirements:
- Sinatra (http://www.sinatrarb.com/),
diff --git a/config.ru b/config.ru
new file mode 100644
index 0000000..fca43f0
--- /dev/null
+++ b/config.ru
@@ -0,0 +1,5 @@
+require 'rubygems'
+require 'sinatra'
+require 'compounds.rb'
+
+run Sinatra::Application