summaryrefslogtreecommitdiff
path: root/test/start-local-webservices.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/start-local-webservices.rb')
-rwxr-xr-xtest/start-local-webservices.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/start-local-webservices.rb b/test/start-local-webservices.rb
deleted file mode 100755
index 66dea29..0000000
--- a/test/start-local-webservices.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/env ruby
-require 'fileutils'
-
-port = 5000
-[ "opentox-compound", "opentox-feature" , "opentox-dataset" , "opentox-fminer" , "opentox-lazar" ].each do |component|
- ENV[component.upcase.gsub(/-/,'_')] = "http://localhost:#{port}/"
- Dir.chdir ENV['HOME'] + '/webservices/' + component
- Dir["test.sqlite3"].each { |f| FileUtils.rm_rf(f) }
- file = 'application.rb'
- pid = fork {`urxvt -title #{component} -e thin --debug --rackup config.ru start -p #{port} -e test`}
- Process.detach(pid)
- port += 1
-end