Skip to content

Instantly share code, notes, and snippets.

@krrg
Created January 19, 2016 22:13
Show Gist options
  • Save krrg/29be9851ba055f38c5e6 to your computer and use it in GitHub Desktop.
Save krrg/29be9851ba055f38c5e6 to your computer and use it in GitHub Desktop.
# This is a temporary server to serve the static directory correctly.
# SimpleHTTPServer couldn't do regex route matching, which meant that
# some routes weren't working correctly.
require 'sinatra'
set :public_folder, File.dirname(__FILE__)
get '/favicon.ico' do
halt 404
end
get '/*' do
send_file 'index.html'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment