This application demonstrates a simple, reusable Ruby web application based on the Rails framework.
The command rails new <app name> is used to create the files and folders that make up the structure of a Rails application. They are described in the Getting Started with Rails guide.
- cd into this project's root directory
- Run
gem install bundlerto install bundler - Run
bundle installto install app dependencies - Run
rails server - Access the running app in a browser at http://localhost:3000
