最佳答案
我有一个页面网站只使用 HTML,CSS 和 JavaScript。我想把这个应用程序部署到 Heroku,但我找不到办法。我现在正在尝试让这个应用程序与辛纳屈一起工作。
.
|-- application.css
|-- application.js
|-- index.html
|-- jquery.js
`-- myapp.rb
以下是 myapp.rb
的内容。
require 'rubygems'
require 'sinatra'
get "/" do
# What should I write here to point to the `index.html`
end