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
| [mysqld] | |
| init_connect='SET collation_connection = utf8mb4_unicode_ci' | |
| init_connect='SET NAMES utf8mb4' | |
| character-set-server = utf8mb4 | |
| character-set-client = utf8mb4 | |
| collation-server = utf8mb4_unicode_ci | |
| skip-character-set-client-handshake | |
| innodb_file_format = Barracuda |
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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| Vagrant.configure("2") do |config| | |
| config.vm.box = "osx-sierra-0.3.1.box" | |
| config.vm.provider :virtualbox do |v| | |
| v.customize ["modifyvm", :id, "--memory", 2048] | |
| end | |
| (1..1).each do |macos_id| | |
| config.vm.define "macos#{macos_id}" do |macos| |