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.
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):
sudo bundle install
bin/rails server
rake db:create
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/
.
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
.
MIT
Buy Ansible for DevOps for your e-reader or in paperback format.