Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 908 Bytes

File metadata and controls

24 lines (16 loc) · 908 Bytes

README

This is a Rails app in which we build a fully database-backed resource.

Here's the plan:

  1. We will use the RCAV Recipe to build our user interface.
  2. We will use the params hash to receive user input.
  3. We will use a SQLite Database file to hold all of our data.
  4. We will use proper HTTP semantics so that our browser communicates propertly with our app.
  5. We will adhere to the DRY principle so that our code is easy to understand and maintain.
  6. We will adhere to the YAGNI principle so that our code is easy to understand and maintain.

How to Download This Code

  1. Fork this project if you haven't already.
  2. Clone the repository as usual.
  3. Open a Terminal session to the subdirectory where you cloned the code.
  4. Run this command: bundle install

Now you shoudl be able to start your rails server, etc.

This README will be updated as necessary as we work on the project.