I have one page website only using HTML, CSS and JavaScript. I want to deploy the app to Heroku, but I cannot find a way to do it. I am now trying to make the app working with Sinatra.

.
|-- application.css
|-- application.js
|-- index.html
|-- jquery.js
`-- myapp.rb

And the following is the content of myapp.rb.

require 'rubygems'
require 'sinatra'

get "/" do
  # What should I write here to point to the `index.html`
end
link|improve this question

1  
I have learnt that accessing localhost:2345/index.html works. – TK. Mar 20 '10 at 11:11
feedback

4 Answers

up vote 38 down vote accepted

Without any additional configuration, Sinatra will serve assets in public. For the empty route, you'll want to render the index document.

require 'rubygems'
require 'sinatra'

get '/' do
  File.read(File.join('public', 'index.html'))
end

Routes should return a String which become the HTTP response body. File.read opens a file, reads the file, closes the file and returns a String.

link|improve this answer
8  
You should rather do send_file File.expand_path('index.html', settings.public). – Konstantin Haase Jan 4 at 16:31
feedback

You can use the send_file helper to serve files.

require 'sinatra'

get '/' do
  send_file File.join(settings.public_folder, 'index.html')
end

This will serve index.html from whatever directory has been configured as having your application's static files.

link|improve this answer
5  
I think newer Sinatra apps use set :public_folder, so you would use settings.public_folder instead of settings.public – Andrew Nov 10 '11 at 16:55
I updated the answer to use settings.public_folder. Older apps may still need to use settings.public. – Chad DeShon Feb 20 at 15:50
feedback

Keep in mind that in production you can have your web server send out index.html automatically so that the request never gets to Sinatra. This is better for performance as you don't have to go through the Sinatra/Rack stack just to serve static text, which is what Apache/Nginx are awesome at doing.

link|improve this answer
Oh yeah, duh. I'll just use Erb then and use Varnish to cash it. – MattDiPasquale Feb 14 '11 at 23:33
feedback

You could just host them from the public folder and they do not need routes.

.
-- myapp.rb
`-- public
    |-- application.css
    |-- application.js
    |-- index.html
    `-- jquery.js

In the myapp.rb

set :public_folder, 'public'

get "/" do
  redirect '/index.html'
end

Link to some sub folder in public

set :public_folder, 'public'
get "/" do
  redirect '/subfolder/index.html' 
end

Everything in ./public is accessible from '/whatever/bla.html

Example :
./public/stylesheets/screen.css
Will be accessible via '/stylesheets/screen.css' no route required

link|improve this answer
what if public has many nested folders (for which you don't want to create routes) that have index.html files you would like to be the default? – Derek Apr 27 at 13:51
I have expanded the solution. I hope it helps clarify, everything is accessible in public, no route required just omit the 'public' part of the path. – Munkymorgy Apr 28 at 16:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.