Add experimental Redis front-end

This commit is contained in:
Buck Doyle 2016-04-13 17:45:17 +02:00
parent 2b878d8628
commit 1a84955bd0
2 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,3 @@
web: bundle exec rackup -s puma -p $PORT waiter/config.ru
web: bundle exec ruby waiter/web.rb -p $PORT
assets: rerun -x -p 'assets/**/*' 'bundle exec rakep'
#specs: rerun -x -p 'public/**/*' './run_jasmine.coffee public/spec.html'

11
waiter/app.rb Normal file
View File

@ -0,0 +1,11 @@
require 'sinatra'
require 'redis'
get '/' do
content_type 'text/html'
redis = Redis.new
project = 'travis'
index_key = params[:index_key] || redis.get("#{project}:index:current")
redis.get("#{project}:index:#{index_key}")
end