Giggle Water is a cocktail recipe application that tracks the ingredients in your bar and tells you the recipes that you can make with those ingredients.
Currently the database has all of the cocktails in the PDT Cocktail book.
Getting your development enviornment setup for the first time:
- Clone this repository and
cdinto the giggle_water directory - Run the
bundle installcommand - You will need to create a
database.ymlfile, runtouch config/database.ymland put in the default sqlite configuration:
default: &default
adapter: sqlite3
pool: 5
timeout: 5000
development:
<<: *default
database: db/development.sqlite3
test:
<<: *default
database: db/test.sqlite3
production:
<<: *default
database: db/production.sqlite3- Run the
rake db:migratecommand - Run the
rake db:seedcommand (This populates the database with recipes from the PDT cocktail book) - From here you can start the web server by using the
rails servercommand. - Navigate to http://localhost:3000 (Note: you can login with the
account found in
config/secrets.yml)
Features are currently tracked at https://www.pivotaltracker.com/n/projects/1360904
GPLv3
This application requires:
- Ruby 2.2.2
- Rails 4.2.2
