From 09974c5a920bbb07475d8e48a725ef3780e60dbe Mon Sep 17 00:00:00 2001 From: Christoph Helma Date: Fri, 22 Jan 2010 11:16:13 +0100 Subject: central config.ru, generic compound API --- lib/templates/config.ru | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) (limited to 'lib/templates') diff --git a/lib/templates/config.ru b/lib/templates/config.ru index 63dd2ce..81cea9d 100644 --- a/lib/templates/config.ru +++ b/lib/templates/config.ru @@ -1,23 +1,13 @@ require 'rubygems' -require 'sinatra' +require 'opentox-ruby-api-wrapper' require 'application.rb' require 'rack' require 'rack/contrib' -FileUtils.mkdir_p 'log' unless File.exists?('log') -log = File.new("log/#{ENV["RACK_ENV"]}.log", "a") +FileUtils.mkdir_p @@tmp_dir +log = File.new("#{@@tmp_dir}/#{ENV["RACK_ENV"]}.log", "a+") $stdout.reopen(log) $stderr.reopen(log) -if ENV['RACK_ENV'] == 'production' - use Rack::MailExceptions do |mail| - mail.to 'helma@in-silico.ch' - mail.subject '[ERROR] %s' - end -elsif ENV['RACK_ENV'] == 'development' - use Rack::Reloader - use Rack::ShowExceptions -end - +use Rack::ShowExceptions run Sinatra::Application - -- cgit v1.2.3 From c9d820e767a6baf6ae6fba2bb6b2e3641253b5c4 Mon Sep 17 00:00:00 2001 From: Christoph Helma Date: Sun, 31 Jan 2010 19:09:16 +0100 Subject: Upload facilities added, Ambit disabled --- lib/templates/config.ru | 13 ------------- lib/templates/config.yaml | 30 ++++++++++++++++++++---------- 2 files changed, 20 insertions(+), 23 deletions(-) delete mode 100644 lib/templates/config.ru (limited to 'lib/templates') diff --git a/lib/templates/config.ru b/lib/templates/config.ru deleted file mode 100644 index 81cea9d..0000000 --- a/lib/templates/config.ru +++ /dev/null @@ -1,13 +0,0 @@ -require 'rubygems' -require 'opentox-ruby-api-wrapper' -require 'application.rb' -require 'rack' -require 'rack/contrib' - -FileUtils.mkdir_p @@tmp_dir -log = File.new("#{@@tmp_dir}/#{ENV["RACK_ENV"]}.log", "a+") -$stdout.reopen(log) -$stderr.reopen(log) - -use Rack::ShowExceptions -run Sinatra::Application diff --git a/lib/templates/config.yaml b/lib/templates/config.yaml index 7b46d43..ad7c4ab 100644 --- a/lib/templates/config.yaml +++ b/lib/templates/config.yaml @@ -1,10 +1,20 @@ -:base_dir: /home/ch/webservices -:webserver: thin -:services: -# make sure to enter a full uri (including training slash) - opentox-compound: "http://localhost:4000/" - opentox-feature: "http://localhost:4001/" - opentox-dataset: "http://localhost:4002/" - opentox-algorithm: "http://localhost:4003/" - opentox-model: "http://localhost:4004/" - #opentox-task: "http://localhost:4005/" +# Example configuration for OpenTox, please adjust to your settings +# +# Example 1: Using external test services +# +# :services: +# opentox-compound: "http://webservices.in-silico.ch/test/compound/" +# opentox-dataset: "http://webservices.in-silico.ch/test/dataset/" +# opentox-algorithm: "http://webservices.in-silico.ch/test/algorithm/" +# opentox-model: "http://webservices.in-silico.ch/test/model/" +# opentox-task: "http://webservices.in-silico.ch/test/task/" +# +# Example 2: Using local services +# :base_dir: /home/ch/webservices +# :webserver: thin +# :services: +# opentox-compound: "http://localhost:4000/" +# opentox-dataset: "http://localhost:4001/" +# opentox-algorithm: "http://localhost:4002/" +# opentox-model: "http://localhost:4003/" +# opentox-task: "http://localhost:4004/" -- cgit v1.2.3