Cocktail Yeti is an open source Cocktail GraphQL API hosted on Rails.
To get started:
bundle install
- To setup the database and populate it with data, run
rails db:setup
bundle exec rails server
and navigate to http://localhost:3000
- Build the web container with
docker-compose build web
- To start the web container, run
docker-compose up -d web
- To drop into a shell on the web container, run
docker-compose exec web sh
- To run the test suite, run
bundle exec rake