-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #51 from softvis-research/development
v1.1.1
- Loading branch information
Showing
101 changed files
with
25,283 additions
and
9,307 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
*.komodoproject | ||
*/.idea | ||
|
||
\.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,35 @@ | ||
before_script: | ||
- cp evaluationserver/config/database.travis.yml evaluationserver/config/database.yml | ||
- mysql -e 'create database eval_server_test;' | ||
- cd evaluationserver/ | ||
- bundle install | ||
env: | ||
secure: Nyq2gajx/TWjeIZtGZSkHREgpE0BhuQg6VOscDKKrenN/CPZ/8wT/h3DYrXOTq+Pz4yOGBgDbptXdT4szu88H5lCNcCfzTnyp/Y+NE/t12nheNFrzlm2L4ryF5IvpAHEXJLYkoJRHXvD4FWTsp/SI3RPLMu9ah2J7gheGSHomZKoApYTLp1NjVSRAgrWGjodMHIYC7d40pNoMyMa/i3EDUHLQ3kNc1U3GGmzaj3Et1Ak6UMQeRE5ph9bfYOZy83Cit9DedeEdbdrnvLa23z/UVp/dmpEchd/844MOKoeX8HPpYW1x/1CovYn3/dshf/bhAkMvngTtJCgyrEpWgy9bb5bwnvjOz2FxBFB8eb/7hfK//6fynCCe5XmPahnIddp7kSNmHwaT4zwUSlFIFegaeZyr6uC5JYFue9i1rICSbAKqOc4EmrL9nKY9Mh6CvW232qiSTvNN02CiSZsAKdA61ou3H7X9UK7WeEAIC43WHkuM5Rn9leB6QC5nwp0UUqY6jbGknoDtvq87t2tVIiAy5aPmpKnrf0C4uUmaz6zZWz4vvjHok6Kuh6ut2LucwVvisCJ7wTRSXB43ubCsuOMSDkd7u4JJUPJPlzc57rQoXSBm68bnuy7SQ2l/epQbl/O9lrxkQLA52JxNF8zdMT7ZKfoGQkQZjXF1YNhp4VHmfA= | ||
language: ruby | ||
rvm: | ||
- 2.5.0 | ||
script: | ||
- bundle exec rails db:migrate RAILS_ENV=test | ||
- bundle exec rspec | ||
after_failure: | ||
- mysql -e 'show databases;' | ||
- cat ./config/database.yml | ||
- echo $RAILS_ENV | ||
- bundle exec rake --version | ||
matrix: | ||
include: | ||
- name: Generator | ||
language: java | ||
before_install: | ||
- cd generator | ||
- cd org.svis.generator.releng/ | ||
script: | ||
- mvn clean install -fae | ||
- name: Generator2 | ||
language: java | ||
before_install: | ||
- cd generator2 | ||
- cd org.getaviz.generator/ | ||
script: | ||
- mvn clean install | ||
- name: Evaluation Server | ||
language: ruby | ||
before_script: | ||
- cp evaluationserver/config/database.travis.yml evaluationserver/config/database.yml | ||
- mysql -e 'create database eval_server_test;' | ||
- cd evaluationserver/ | ||
- bundle install | ||
env: | ||
secure: Nyq2gajx/TWjeIZtGZSkHREgpE0BhuQg6VOscDKKrenN/CPZ/8wT/h3DYrXOTq+Pz4yOGBgDbptXdT4szu88H5lCNcCfzTnyp/Y+NE/t12nheNFrzlm2L4ryF5IvpAHEXJLYkoJRHXvD4FWTsp/SI3RPLMu9ah2J7gheGSHomZKoApYTLp1NjVSRAgrWGjodMHIYC7d40pNoMyMa/i3EDUHLQ3kNc1U3GGmzaj3Et1Ak6UMQeRE5ph9bfYOZy83Cit9DedeEdbdrnvLa23z/UVp/dmpEchd/844MOKoeX8HPpYW1x/1CovYn3/dshf/bhAkMvngTtJCgyrEpWgy9bb5bwnvjOz2FxBFB8eb/7hfK//6fynCCe5XmPahnIddp7kSNmHwaT4zwUSlFIFegaeZyr6uC5JYFue9i1rICSbAKqOc4EmrL9nKY9Mh6CvW232qiSTvNN02CiSZsAKdA61ou3H7X9UK7WeEAIC43WHkuM5Rn9leB6QC5nwp0UUqY6jbGknoDtvq87t2tVIiAy5aPmpKnrf0C4uUmaz6zZWz4vvjHok6Kuh6ut2LucwVvisCJ7wTRSXB43ubCsuOMSDkd7u4JJUPJPlzc57rQoXSBm68bnuy7SQ2l/epQbl/O9lrxkQLA52JxNF8zdMT7ZKfoGQkQZjXF1YNhp4VHmfA= | ||
rvm: | ||
- 2.5.0 | ||
script: | ||
- bundle exec rails db:migrate RAILS_ENV=test | ||
- bundle exec rspec | ||
after_failure: | ||
- mysql -e 'show databases;' | ||
- cat ./config/database.yml | ||
- echo $RAILS_ENV | ||
- bundle exec rake --version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
version: "3" | ||
services: | ||
db: | ||
image: mysql:5.7 | ||
environment: | ||
MYSQL_ROOT_PASSWORD: dbpassword_for_user | ||
MYSQL_DATABASE: eval_server_development | ||
MYSQL_USER: db_username | ||
MYSQL_PASSWORD: dbpassword_for_user | ||
restart: always | ||
eval: | ||
build: evaluationserver | ||
restart: always | ||
env_file: evaluationserver/env | ||
command: "./bin/wait-for-it.sh db:3306 -s -t 30 -- ./bin/docker_start" | ||
volumes: | ||
- ./evaluationserver:/usr/src/app | ||
ports: | ||
- "8081:8081" | ||
depends_on: | ||
- db | ||
frontend: | ||
build: ui/ | ||
restart: always | ||
volumes: | ||
- ./ui:/var/www/html/ui | ||
ports: | ||
- "8082:80" | ||
backend: | ||
build: generator2/org.getaviz.generator/ | ||
restart: always | ||
volumes: | ||
- ./generator2/org.getaviz.generator/target/org.getaviz.generator-1.0.0-SNAPSHOT.war:/var/lib/jetty/webapps/root.war | ||
- ./settings.properties:/opt/config/settings.properties | ||
- ./generator2/output:/var/lib/jetty/output/ | ||
- ./generator2/databases:/var/lib/jetty/databases/ | ||
ports: | ||
- "8083:8080" | ||
volumes: | ||
bundle: | ||
driver: local |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
# This file is used by Rack-based servers to start the application. | ||
|
||
require ::File.expand_path('../config/environment', __FILE__) | ||
run Rails.application | ||
require ::File.expand_path('../config/environment', __FILE__) | ||
|
||
if ENV['RAILS_RELATIVE_URL_ROOT'] | ||
map ENV['RAILS_RELATIVE_URL_ROOT'] do | ||
run Rails.application | ||
end | ||
else | ||
run Rails.application | ||
end |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.