Skip to content

Instantly share code, notes, and snippets.

@krrg
Created October 8, 2016 05:45
Show Gist options
  • Save krrg/37e8aed5594b773f3bab456c59b12452 to your computer and use it in GitHub Desktop.
Save krrg/37e8aed5594b773f3bab456c59b12452 to your computer and use it in GitHub Desktop.
A little static SPA server
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