Skip to content

Latest commit

 

History

History
58 lines (34 loc) · 2.22 KB

README.md

File metadata and controls

58 lines (34 loc) · 2.22 KB

Accelerate

Collection of different Rails Application templates to bootstrap new projects.

Inspired by thoughtbot/suspenders but not a gem.

Usage

Make sure you have rails installed to run rails new.

gem install rails

To use the rails-base template, run

rails new project_name -m https://github.com/BiteKollektiv/accelerate/raw/master/rails-base/rails-base.rb

By default this will create a new git repository and a functional Rails Application.

There might be some dependencies missing, depending on your system.

Gemfile

Application gems

Development gems

  • Dotenv for loading environment variables
  • Pry Rails for debugging
  • Spring for fast Rails actions via pre-loading

Testing gems

More stuff

Just like Suspenders, Accelerate fixes several of Rails' insecure defaults:

  • Accelerate uses Unicorn instead of WEBrick, allowing less verbose Server headers.
  • Accelerate is configured to pull your application secret key base from an environment variable, which means you won't need to risk placing it in version control.