a simple boilerplate for creating production-ready sinatra apps that use activerecord, sqlite, and twitter bootstrap
Get up and Running
Fork and clone this repo.
Run
bundle install
.
Start a local server with
shotgun
.
Start a console with
tux
.
Visit
localhost:9393
in your browser.
The Pack
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sinatra apps can be built a bunch of different ways. This is my way. I think it's pretty good.
Your app is wrapped in a class called
App
that extends
Sinatra::Application
. It is wrapped in a module that you should name with your project name.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gem. This, and all of your Gemfiles are required in your app using Bundler at the very top of your
app.rb
:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
folder for all our static assets (i.e. things that don't need to be compiled or rendered, like pictures and css.) We'll also define a
:root
. This goes inside our
App
class definition in the
app.rb
file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hell yes you can use ActiveRecord, even if you aren't in Rails. The structure Rat Pack provides is explained below. If you want more info on how to properly implement RESTful resources with AR in Sinatra, czech out this awesome tutorial.
Your sqlite database is made with the code below. Maybe rename
database.db
to something more related to your project.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
directory are required in your app using this code:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Since we are using ActiveRecord as our ORM, your models should extend
ActiveRecord::Base
like this:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If you're used to Rails, it's worth noting that Sinatra collapses routes controllers into the same blocks that exist inside our
App
class in
app.rb
. The Pack contains one as an example:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sinatra allows you to use layouts, and by default will use the
layout.erb
file in the
views
folder. The one the Pack contains is shown below:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Note that whatever view you render will be inserted into the layout where
<%= yield %>
is.
Lastly, Sinatra doesn't come with the ability to support partials out of the box. Therefore, the pack comes with a helper to provide that functionality:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters