redeploy to dokku

pull/102/head
Rick Carlino 2014-11-13 21:56:49 -06:00
parent b266b13de2
commit 202304b3c7
3 changed files with 8336 additions and 2875 deletions

View File

@ -5,7 +5,7 @@
# Run this in the command line for diagnostics.
# ======
# curl -X GET http://skynet.im/subscribe/713c69b1-e36a-11e3-93f8-f3e7e8d1cce9?token=0waw1l97lbwc23xrh0oem7d8rbai3sor --header "skynet_auth_uuid: 4bb4a961-e8e6-11e3-93f8-f3e7e8d1cce9" --header "skynet_auth_token: jce90gf7szxxyldihii1m3xv5d9jatt9"
angular.module('FarmBot').controller "Movement2Controller", [
angular.module('FarmBot').controller "MovementController", [
'$scope'
'Restangular'
'Devices'

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
# This file should contain all the record creation needed to seed the database with its default values.
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
#
# Examples:
#
# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
# Mayor.create(name: 'Emanuel', city: cities.first)
puts 'Purging database...'
Mongoid.purge!
puts 'Creating a fake user account (username: `admin`, password: `password123`)'
User.create(name: 'admin',
email: 'admin@admin.com',
password: 'password123',
password_confirmation: 'password123')