Add experimental Redis front-end
This commit is contained in:
parent
2b878d8628
commit
1a84955bd0
2
Procfile
2
Procfile
|
@ -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'
|
assets: rerun -x -p 'assets/**/*' 'bundle exec rakep'
|
||||||
#specs: rerun -x -p 'public/**/*' './run_jasmine.coffee public/spec.html'
|
#specs: rerun -x -p 'public/**/*' './run_jasmine.coffee public/spec.html'
|
||||||
|
|
11
waiter/app.rb
Normal file
11
waiter/app.rb
Normal 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
|
Loading…
Reference in New Issue
Block a user