This file contains 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
require 'json' | |
require 'yaml' | |
VAGRANTFILE_API_VERSION = "2" | |
confDir = $confDir ||= File.expand_path("~/.homestead") | |
homesteadYamlPath = confDir + "/Homestead.yaml" | |
homesteadJsonPath = confDir + "/Homestead.json" | |
afterScriptPath = confDir + "/after.sh" | |
aliasesPath = confDir + "/aliases" |
This file contains 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
Show hidden characters
{ | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"font_face": "Source Code Pro", | |
"font_size": 12, | |
"line_padding_top": 2, | |
"line_padding_bottom": 2, |
This file contains 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
#!/bin/sh | |
# If you would like to do some extra provisioning you may | |
# add any commands you wish to this file and they will | |
# be run after the Homestead machine is provisioned. | |
echo "Updating repositories..." | |
apt-get -qq update | |
echo "Disabling XDebug..." | |
phpdismod xdebug |
This file contains 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
Hostname "friendly_name@hostname_with_underscores" | |
FQDNLookup false | |
Interval "10" | |
Timeout 2 | |
ReadThreads 5 | |
LoadPlugin cpu | |
LoadPlugin df | |
LoadPlugin load |
This file contains 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
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// Choose either "stable" for receiving highly polished, | |
// or "canary" for less polished but more frequent updates | |
updateChannel: 'stable', |