From 77635dc5680b382d572d37704e7c589cc883c1a8 Mon Sep 17 00:00:00 2001 From: Kyle Heppenstall Date: Tue, 17 Jan 2017 17:10:00 -0700 Subject: [PATCH 1/3] Update README.md --- README.md | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 450044b..cf6377e 100644 --- a/README.md +++ b/README.md @@ -2,14 +2,23 @@ [Production Site](https://scoopful.herokuapp.com) -Scoops to Stoop: bringing the bulk aisle right to your front step. +Scoops to Stoop: bringing the bulk aisle right to your front step. User can login to view and check out food items by the pound in a digital grocery store bulk aisle. Eliminate food waste by ordering as much or as little as you need of an ingredient. -## Possible Extensions -Show recipies by items ordered or order all items for a reciepe. Multiple units, such as by volume or handful. Change currency of order. - #### Project Manager Amy Kintner #### Project Members -Mike Schutte, Kyle Heppenstall, Annie Wolff \ No newline at end of file +Mike Schutte, Kyle Heppenstall, Annie Wolff + +Tech Stack: Rails, PostgreSQL, RSpec, Sass, Haml, Heroku, Capybara, bcrypt + +Follow these steps to run tests or host the site locally. + +1. To get started make sure you have postgres, Ruby, and rails 5 (`gem install rails`) installed on your machine. +1. Clone the repository: `git clone https://github.com/kheppenstall/idea_box.git` +1. `cd` into the directory `scoopful` and `bundle install` in the command line. +1. Run `rake db:create` and `rake db:migrate` in the command line to get your schema up to date. +1. Run `rake db:test:prepare` in the command line. +1. Run `rspec` in the command line to run the tests. +1. Run `rails s` in the command line to host the site locally and visit http://localhost:3000/ to check it out! From dfe4255b7d817122d2a0006ae0bdf3818849f71d Mon Sep 17 00:00:00 2001 From: Kyle Heppenstall Date: Tue, 17 Jan 2017 17:47:22 -0700 Subject: [PATCH 2/3] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index cf6377e..a53e66e 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,6 @@ Follow these steps to run tests or host the site locally. 1. To get started make sure you have postgres, Ruby, and rails 5 (`gem install rails`) installed on your machine. 1. Clone the repository: `git clone https://github.com/kheppenstall/idea_box.git` 1. `cd` into the directory `scoopful` and `bundle install` in the command line. -1. Run `rake db:create` and `rake db:migrate` in the command line to get your schema up to date. -1. Run `rake db:test:prepare` in the command line. +1. Run `rake db:create`, `rake db:migrate`, `rake db:test:prepare` and in the command line to get your schema up to date. 1. Run `rspec` in the command line to run the tests. 1. Run `rails s` in the command line to host the site locally and visit http://localhost:3000/ to check it out! From eb6f6e007205e717c6e467abe486a77e3b8b581c Mon Sep 17 00:00:00 2001 From: Kyle Heppenstall Date: Tue, 17 Jan 2017 17:48:30 -0700 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a53e66e..09e64b3 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,6 @@ Follow these steps to run tests or host the site locally. 1. To get started make sure you have postgres, Ruby, and rails 5 (`gem install rails`) installed on your machine. 1. Clone the repository: `git clone https://github.com/kheppenstall/idea_box.git` 1. `cd` into the directory `scoopful` and `bundle install` in the command line. -1. Run `rake db:create`, `rake db:migrate`, `rake db:test:prepare` and in the command line to get your schema up to date. +1. Run `rake db:create`, `rake db:migrate`, and `rake db:test:prepare` in the command line to get your schema up to date. 1. Run `rspec` in the command line to run the tests. 1. Run `rails s` in the command line to host the site locally and visit http://localhost:3000/ to check it out!