Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 879 Bytes

README.md

File metadata and controls

18 lines (12 loc) · 879 Bytes

Cocktail Yeti CircleCI Maintainability

Cocktail Yeti is an open source Cocktail GraphQL API hosted on Rails.

Development

To get started:

  1. bundle install
  2. To setup the database and populate it with data, run rails db:setup
  3. bundle exec rails server and navigate to http://localhost:3000

Docker

  1. Build the web container with docker-compose build web
  2. To start the web container, run docker-compose up -d web
  3. To drop into a shell on the web container, run docker-compose exec web sh
  4. To run the test suite, run bundle exec rake