geerlingguy / demo-rails-app

Demonstration Ruby on Rails app for Ansible for DevOps

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Demo Rails App

Build Status

This repository contains an extremely simple Ruby on Rails app which follows the official Getting Started with Rails guide.

The app is meant for demonstration purposes in Ansible for DevOps, a book on Ansible by Jeff Geerling. See, specifically, the deployments example in the official Ansible for DevOps repository.

Local Install

If you'd like to run the example locally, make sure you have Ruby and Rails installed, then do the following (from within this repository's directory):

  1. sudo bundle install
  2. bin/rails server
  3. rake db:create
  4. rake db:schema:load

After WEBrick starts up on port 3000 (it's default), you should be able to browse the rails app in your browser at something like http://localhost:3000/.

Generating secrets.yml

If you get a warning about a secrets.yml file missing, create a secrets.yml file in config/secrets.yml with content like the following:

---
development:
  secret_key_base: SECRET_1_HERE

test:
  secret_key_base: SECRET_2_HERE

production:
  secret_key_base: SECRET_3_HERE

To generate secrets for the three environments, run RAILS_ENV=[environment name here] rake secret.

License

MIT

Buy the Book

Ansible for DevOps Cover

Buy Ansible for DevOps for your e-reader or in paperback format.

About

Demonstration Ruby on Rails app for Ansible for DevOps


Languages

Language:Ruby 63.0%Language:HTML 25.9%Language:CSS 4.2%Language:SCSS 2.6%Language:JavaScript 2.5%Language:CoffeeScript 1.8%