A simple template for starting new Rails 4 projects.
There are two branches of this project that are regularly maintained: master
and bootstrap
.
- The
master
branch contains the newest rails-starter template. Most projects are best served by starting from this branch. - The
bootstrap
branch contains all the latest code from master, plus extra gems, views, and helpers specific to Twitter Bootstrap. If you are starting a project where you plan to use Twitter Bootstrap, the bootstrap branch is what you need.
Rails-stater is a project template for Rails 4 projects that is pre-configured for Capistrano-based deployment. This template targets the following server stack:
By using this template, you’ll hit the ground running with best practices for productive Rails and front-end development:
- RSpec and Capybara for testing
- guard-livereload for fast, iterative front-end development
- Up-to-date rbenv and bundler gem management techniques
- SMACSS for organizing stylesheets
- Capistrano recipes to make deployment easy
.env
for storing encryption keys and secret tokens safely outside of source control- An easy way to add Twitter Bootstrap, should you choose to do so (use the
bootstrap
branch)
More on our blog:
- Rails OS X Developer Guide – Installing an rbenv-based Rails stack on Mountain Lion
- Lightning-Fast Sass Reloading in Rails 3.2
- SMACSS and Rails – A Styleguide for the Asset Pipeline
We recommend rbenv and ruby-build for managing Ruby installations. This template currently uses Ruby 2.1.2.
- Install rbenv into
~/.rbenv
using the fantastic rbenv-installer script. - Run
rbenv install 2.1.2
(this will take several minutes). - Optional: make 2.1.2 your default ruby by running
rbenv global 2.1.2
.
This starter uses the capybara-webkit gem, which requires the Qt libraries (version 4.8 or higher). These libraries aren't installed out of the box on most systems, including Mac OS X.
To install the Qt libraries, follow these instructions. Homebrew is the easiest option on the Mac.
- Download and extract either the master (plain starter) or the bootstrap (Twitter Bootstrap-themed starter) ZIP archive of the rails-starter repository; this will be the start of your new Rails project.
- Globally replace
rails-starter
andRailsStarter
with the desired name of your project. cd
into the project and rungit init && git add . && git commit -m "init"
to initialize a git repository.
- Install bundler:
gem install bundler
- Run
rbenv rehash
. - Run
bundle install
- Once more, run
rbenv rehash
.
Protip: Install rubygems-bundler so you won’t need to use bundle exec
all the time. Don’t forget to reinstall it whenever you install a new version of Ruby.
- Run
cp example.env .env
to make a local version of the app settings. - Run
cp config/database.example.yml config/database.yml
to make a local version of the database config.
- Run
rake db:create
to initialize the database (make sure postgres is started first). - Run
rake db:migrate
. - Commit the generated schema:
git add db && git commit -m "Create schema with db:migrate"
- Run
rake spec
to make sure everything works. - Run
rails s
to start the app.
Protip: Install this handy bash script to consolidate rails
and rake
into a single r
shortcut.
This project uses the capistrano-fiftyfive
gem, which provides all recipes needed to set up and deploy on Ubuntu 12.04. It's super simple.
Using a provider like DigitalOcean, purchase an Ubuntu 12.04 LTS virtual private server. Make sure to install your SSH key for the root user.
Make note of the IP address of the VPS. Then:
To use capistrano you will need to update the deployment settings to match your VPS.
- Review the contents of
config/deploy.rb
. Be sure the change the:repository
to match your git repository URL. - Update the IP address in
config/deploy/staging.rb
to match the IP of the VPS you just purchased. - By default,
cap production deploy
will deploy from themaster
branch, andcap staging deploy
will deploy from thedevelopment
branch. Update the branch settings if you use a different branch policy.
Don't forget to git push
your code so that capistrano can deploy it. Make sure you've pushed the branch that capistrano is expecting in staging.rb
. Then run these commands and follow the prompts to install Nginx, SSL, PostgreSQL, Ruby (the whole stack!):
cap staging provision
cap staging deploy:migrate_and_restart
Refer to the capistrano-fiftyfive README more details and deployment instructions.