A ruby on rails app that helps track and rate your favorite Pizza places in the NYC area. Users can create restaurants and pies, and add them to the database for other users to access as well. Users can also rate and keep track of restaurants they have visited in order to keep a record of what they like, and do not for future reference.
You will need to have the following installed on your computer in order to use Slice-NYC:
- Ruby
- Rails 5+
- PostgreSQL database
- Fork the repository and clone it.
- Run
bundle installto install gems. - Set up the database with
rake db:createandrake db:migrate - Seed the database with
rake db:seed. (Do not skip this step, otherwise you won't have any data to work with for certain categories). - The app uses the dotenv gem for environment variables. Create a
.envfile in the root of the app and addFACEBOOK_KEY=your_keyandFACEBOOK_SECRET=your_secret. If you do not already have a Facebook developer account, you will need to do so in order to get these keys through Oauth on Facebook for developers, in order to log in through Facebook. - Run
rails sand navigate tohttp://localhost:3000.
- At the moment, users cannot enter new information for sauces, crusts, toppings, and cheeses. Users can only create restaurants and pies based upon the information available. Future versions will make such attributes submittable on a user level.

