0.0
No commit activity in last 3 years
No release in over 3 years
This application acts as a REST service to store in the database execution results produced on the fly by Moto::Listeners::Webui. It also provides a web interface for these results.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 0.3.18

Runtime

~> 3.0.0
~> 4.2.4
 Project Readme

Running it:

rails new ui
cd ui
# edit config/database.yml
# edit Gemfile, add:
  gem 'mysql2', '~> 0.3.18' # or whatever DB driver gem of preference
  gem 'moto_web_engine'
bundle install
rake moto_web_engine:install:migrations
rake db:migrate
edit config/routes.rb
  mount MotoWebEngine::Engine => "/"
  root 'moto_web_engine/runs#index'
bundle exec rails s -b 0.0.0.0 -d