-
Notifications
You must be signed in to change notification settings - Fork 335
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
💡 💄 🐎 Move each provider into it's own build folder for easier builds…
… / clarity (#111)
- Loading branch information
1 parent
66eae48
commit ec0cf28
Showing
10 changed files
with
99 additions
and
18 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
/.vagrant | ||
.vagrant | ||
*.box | ||
*.log |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
VAGRANTFILE_API_VERSION = '2' | ||
|
||
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | ||
# Configure The Box | ||
config.vm.box = 'kmm/ubuntu-xenial64' | ||
config.vm.hostname = 'homestead' | ||
|
||
# Don't Replace The Default Key https://github.com/mitchellh/vagrant/pull/4707 | ||
config.ssh.insert_key = false | ||
|
||
# Configure Port Forwarding | ||
config.vm.network 'forwarded_port', guest: 80, host: 8000, auto_correct: true | ||
config.vm.network 'forwarded_port', guest: 3306, host: 33060, auto_correct: true | ||
config.vm.network 'forwarded_port', guest: 5432, host: 54320, auto_correct: true | ||
config.vm.network 'forwarded_port', guest: 35729, host: 35729, auto_correct: true | ||
|
||
config.vm.synced_folder './', '/vagrant', disabled: true | ||
|
||
# Run The Base Provisioning Script | ||
config.vm.provision 'shell', path: '../scripts/update.sh' | ||
config.vm.provision :reload | ||
config.vm.provision 'shell', path: '../scripts/provision.sh' | ||
end |
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
VAGRANTFILE_API_VERSION = '2' | ||
|
||
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | ||
# Configure The Box | ||
config.vm.box = 'bento/ubuntu-16.04' | ||
config.vm.hostname = 'homestead' | ||
|
||
# Don't Replace The Default Key https://github.com/mitchellh/vagrant/pull/4707 | ||
config.ssh.insert_key = false | ||
|
||
# Configure Port Forwarding | ||
config.vm.network 'forwarded_port', guest: 80, host: 8000, auto_correct: true | ||
config.vm.network 'forwarded_port', guest: 3306, host: 33060, auto_correct: true | ||
config.vm.network 'forwarded_port', guest: 5432, host: 54320, auto_correct: true | ||
config.vm.network 'forwarded_port', guest: 35729, host: 35729, auto_correct: true | ||
|
||
config.vm.synced_folder './', '/vagrant', disabled: true | ||
|
||
# Run The Base Provisioning Script | ||
config.vm.provision 'shell', path: '../scripts/update.sh' | ||
config.vm.provision :reload | ||
config.vm.provision 'shell', path: '../scripts/provision.sh' | ||
end |
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
VAGRANTFILE_API_VERSION = '2' | ||
|
||
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | ||
# Configure The Box | ||
config.vm.box = 'bento/ubuntu-16.04' | ||
config.vm.hostname = 'homestead' | ||
|
||
# Don't Replace The Default Key https://github.com/mitchellh/vagrant/pull/4707 | ||
config.ssh.insert_key = false | ||
|
||
config.vm.provider :vmware_fusion do |v| | ||
v.memory = 2048 | ||
v.cpus = 2 | ||
end | ||
|
||
# Configure Port Forwarding | ||
config.vm.network 'forwarded_port', guest: 80, host: 8000, auto_correct: true | ||
config.vm.network 'forwarded_port', guest: 3306, host: 33060, auto_correct: true | ||
config.vm.network 'forwarded_port', guest: 5432, host: 54320, auto_correct: true | ||
config.vm.network 'forwarded_port', guest: 35729, host: 35729, auto_correct: true | ||
|
||
config.vm.synced_folder './', '/vagrant', disabled: true | ||
|
||
# Run The Base Provisioning Script | ||
config.vm.provision 'shell', path: '../scripts/update.sh' | ||
config.vm.provision :reload | ||
config.vm.provision 'shell', path: '../scripts/vmware_tools.sh' | ||
config.vm.provision :reload | ||
config.vm.provision 'shell', path: '../scripts/provision.sh' | ||
end |
File renamed without changes.