Created
March 3, 2017 00:14
-
-
Save superhighfives/1010f693d4e719c0bfe512cb673f7187 to your computer and use it in GitHub Desktop.
Rails 5 API + ActiveAdmin + create-react-app on Heroku
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file should contain all the record creation needed to seed the database with its default values. | |
# The data can then be loaded with the rails db:seed command (or created alongside the database with db:setup). | |
# | |
# Examples: | |
# | |
# movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }]) | |
# Character.create(name: 'Luke', movie: movies.first) | |
AdminUser.create!(email: '[email protected]', password: 'password', password_confirmation: 'password') | |
negroni = Drink.create( | |
title: "Sparkling Negroni", | |
description: "The perfect cocktail for sipping after an alfresco dinner on a summer night, Negronis get their red hue and herbaceous beginning from the Italian apéritif Campari, which is mellowed out by floral gin and sweet vermouth. Top off your drink with some bubbly, and enjoy.", | |
steps: "Combine the first three ingredients in an ice-filled cocktail shaker. Shake until cold, then strain the mixture into a glass. Top with prosecco, and garnish with the orange twist.", | |
source: "http://www.architecturaldigest.com/gallery/4-easy-entertaining-summer-cocktail-recipes-5-ingredients-or-less", | |
) | |
negroni.ingredients.create(description: "⅓ oz. Campari") | |
negroni.ingredients.create(description: "⅓ oz. gin") | |
negroni.ingredients.create(description: "⅓ oz. sweet vermouth") | |
negroni.ingredients.create(description: "Chilled prosecco, or other sparkling wine, for topping") | |
negroni.ingredients.create(description: "Orange peel twist (optional)") | |
margarita = Drink.create( | |
title: "Pineapple-Jalapeño Margarita", | |
description: "No margarita is complete without fresh-squeezed lime juice—there’s something about the sour punch of citrus that goes so well with the smokiness of tequila. To stir things up, try adding pineapple juice to the mix and muddling in some jalapeño peppers for a little heat.", | |
steps: "Pour the lime juice and jalapeños into a shaker and muddle with the back of a wood spoon. Fill with ice. Pour in tequila, pineapple juice, and Grand Marnier. Shake until chilled. Dip the rim of a rocks glass in water, then dip it in coarse salt. Fill the glass with ice, and strain the cocktail into the glass. Garnish with pineapple wedge and peel and jalapeño slices.", | |
source: "http://www.architecturaldigest.com/gallery/4-easy-entertaining-summer-cocktail-recipes-5-ingredients-or-less" | |
) | |
margarita.ingredients.create(description: "½ oz. fresh lime juice") | |
margarita.ingredients.create(description: "⅓ of a large jalapeño, sliced, plus more for garnish") | |
margarita.ingredients.create(description: "1¾ oz. tequila") | |
margarita.ingredients.create(description: "1½ oz. fresh pineapple juice") | |
margarita.ingredients.create(description: "½ oz. Grand Marnier or other orange liqueur") | |
margarita.ingredients.create(description: "Coarse salt, for rimming glass") | |
margarita.ingredients.create(description: "Pineapple wedge and peel, for garnish") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment