This is a Rails app in which we build a fully database-backed resource.
Here's the plan:
- We will use the RCAV Recipe to build our user interface.
- We will use the
params
hash to receive user input. - We will use a SQLite Database file to hold all of our data.
- We will use proper HTTP semantics so that our browser communicates propertly with our app.
- We will adhere to the DRY principle so that our code is easy to understand and maintain.
- We will adhere to the YAGNI principle so that our code is easy to understand and maintain.
- Fork this project if you haven't already.
- Clone the repository as usual.
- Open a Terminal session to the subdirectory where you cloned the code.
- 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.