Skip to content
This repository has been archived by the owner on Nov 13, 2022. It is now read-only.

Latest commit

 

History

History
40 lines (26 loc) · 1.61 KB

README.md

File metadata and controls

40 lines (26 loc) · 1.61 KB

Pick-A-Wish

Pick-A-Wish is a Ruby on Rails application to simplify sharing wish lists with different people. It allows users to create a simple wish list and to share it with a custom group of people. Those people can then see the items on the list and pick the ones that they are planning to get the person. Once an item is picked, it disappears from the list for all of the other people. However, the list creator does not see that someone has picked it. For convenience, there is also a shopping list tab that lists all of the items that the user has picked from the different lists.

Getting started

Make sure you have Ruby 2.7.1 and Rails 6.0.3 installed. The current configuration makes use of PostgreSQL, so it needs to be installed on the system as well. Then run the following commands:

git clone [email protected]:sykaeh/pick-a-wish.git
cd pick-a-wish
bundle install
rake db:create db:migrate db:seed
hivemind Procfile.dev

Once the server is running, Pick-A-Wish can be accessed at http://localhost:5000. It can also be deployed to Heroku without any problems.

Generate new components

You can use the following command:

$ bin/rails g component NAME

Built using

License

Copyright (c) 2015 - 2020 Sybil Ehrensberger. See the LICENSE file for license rights and limitations (MIT).

Testing

There are no tests yet.