RoboticSwarmControl / SwarmControlRedux

This is the Node reimplementation of the SwarmControl website.
MIT License
2 stars 1 forks source link

Add result storage #3

Closed crertel closed 8 years ago

crertel commented 8 years ago

Now that we have the base app, we're going go go ahead and add the database support for tracking results.

The old schema looks like:

ActiveRecord::Schema.define(:version => 20130904061339) do

  create_table "results", :force => true do |t|
    t.string   "task"
    t.string   "participant"
    t.string   "runtime"
    t.datetime "created_at",  :null => false
    t.datetime "updated_at",  :null => false
    t.integer  "robot_count"
    t.string   "mode"
    t.string   "agent"
  end

end

In this task, we will:

  1. Add a script for setting up the database.
  2. Add a path to query results.
  3. Add a path to collect results.
crertel commented 8 years ago

This was closed by PR #4