Giter Club home page Giter Club logo

puppet-mysql's Introduction

MySQL Puppet Module for Boxen

Build Status

Usage

include mysql

mysql::db { 'mydb': }

Required Puppet Modules

  • boxen
  • homebrew
  • stdlib

Environment

ATTENTION Boxen uses a non standard 13306 port to avoid collisions.

Once installed, you can access the following variables in your environment, projects, etc:

  • BOXEN_MYSQL_PORT: the configured MySQL port
  • BOXEN_MYSQL_URL: the URL for MySQL, including localhost & port
  • BOXEN_MYSQL_SOCKET: the path to the MySQL socket

Rails

In config/database.yml:

<%
  socket = [
    ENV["BOXEN_MYSQL_SOCKET"],
    "/var/run/mysql5/mysqld.sock",
    "/tmp/mysql.sock"
  ].detect { |f| f && File.exist?(f) }

  port = ENV["BOXEN_MYSQL_PORT"] || "3306"
%>

development: &development
  adapter: mysql
  database: yourapp_development
  username: root
<% if socket %>
  host: localhost
  socket: <%= socket %>
<% else %>
  host: 127.0.0.1
  port: <%= port %>
<% end %>

# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
  <<: *development
  database: yourapp_test

Developing

Write code.

Run script/cibuild.

puppet-mysql's People

Contributors

mikemcquaid avatar dgoodlad avatar wfarr avatar skalnik avatar utestmichaell avatar lstoll avatar fromonesrc avatar ymendel avatar jbarnette avatar technicalpickles avatar nackjicholson avatar seanknox avatar simpson-ross avatar rafaelfranca avatar indirect avatar jonmagic avatar tarebyte avatar paulcollinsiii avatar hakamadare avatar aafwu00 avatar grosser avatar

Watchers

 avatar Paweł Lasek avatar Piotr Duda avatar Chris Gianelloni avatar  avatar James Cloos avatar Aleksander Piotrowski avatar  avatar Ajit Chakrapani avatar Przemysław Jakubczyk avatar Rafał Śnieżyński avatar Krzysztof Figaj avatar Wojciech Kedzierski avatar Przemysław Hejman avatar Jonathan W. Zaleski avatar Rob avatar Matt Foxvog avatar uTest TeamCity avatar Tomasz avatar Michał Uziak avatar Tomasz Rogozik avatar Alex Jacks avatar John Bailey avatar Max Zhou avatar Erik Schweller avatar Michal Duda avatar Applause Jenkins avatar  avatar Adilet Issayev avatar Jordan King avatar James Utt avatar  avatar Dean Vittum avatar Sathvik Dhanya avatar Ferenc Kamras avatar Brooke avatar  avatar  avatar Pawel Kowalczuk avatar Brandon Coll avatar Joey Perez avatar Jacek Poreda avatar Kamil Zawilski avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.