This is a mock website for an unspecified e-commerce store. It has basic user authentication, so that only logged in users may review products, and only administrators can create, edit, and delete products.
To install on your own machine, follow the instructions below:
- Clone this repository.
- Run the following commands in the project root directory:
bundle update rake db:setup rails db:seed rails s
- Open
localhost:3000
in your web browser - To give an account admin privileges:
- In the project root run
rails c
- Then run:
User.find_by(email: "[account email address]").update(admin: true)
- The account will now have admin access to the app.
- In the project root run
-
Products
- All users may view products.
- Users can show/hide detail page for each product from index using AJAX.
- Product detail displays: name, price, the description, and image.
- Users can add products to shopping cart from index page using AJAX.
- Added items will display updated item count and cost in navbar using AJAX.
- Users can delete items from shopping cart using AJAX.
- The total price will be updated upon removal of each item.
- Users will not be able to order negative quantities of products.
- Users can sign in or sign up for an account (with flash notification of success)
- Admin
- CRUD functionality for products with flash confirmation.
- Navbar links for accounts and adding products available upon admin signin.
- All users may view products.
-
Need 6 of the following:
- X Ensure that users can't order negative number of items.
- X Add flash messages for signing up, signing in, and signing out.
- X Add product update and delete functionality for admins.
- X Add admin flash messages for adding, updating, and deleting products.
- X Add admin links to navebar so admins can easily add, update, and delete products.
- Add integration testing for AJAX functionality.
Please contact: ldmackrell@gmail.com with questions, comments, or issues.
- Ruby
- Rails
- Bootstrap
- Devise
- Stripe
- AJAX
Copyright (c) 2017 L. Devin MacKrell
This software is licensed under the MIT license.
E-commerce site. Uses bcrypt
and materialize
. There's a seed file. Set up your own admin. If you have questions, I'll be in Bali with no email. Ask someone else.
To set up:
-
rake db:setup
-
Sorry, didn't get around to tests. It mostly works. There might be a few bugs.