From 5d01197cf893d4a8c9a57f7c963f47393d34e157 Mon Sep 17 00:00:00 2001 From: varac Date: Wed, 13 Jul 2016 20:07:09 +0200 Subject: initial commit, import from pixelated_dashboard --- config.ru | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 config.ru (limited to 'config.ru') diff --git a/config.ru b/config.ru new file mode 100644 index 0000000..67af9aa --- /dev/null +++ b/config.ru @@ -0,0 +1,23 @@ +require 'dashing' + +configure do + if ENV.has_key?('PIX_AUTH_TOKEN') + set :auth_token, ENV['PIX_AUTH_TOKEN'] + else + set :auth_token, 'ie2Aex6ooLi4usi0ahngaht' + end + set :default_dashboard, 'default' + + helpers do + def protected! + # Put any authentication code you want in here. + # This method is run before accessing any resource. + end + end +end + +map Sinatra::Application.assets_prefix do + run Sinatra::Application.sprockets +end + +run Sinatra::Application -- cgit v1.2.3