mirror of
https://github.com/nikdoof/grumble.git
synced 2025-12-13 08:42:15 +00:00
Add basic Vagrant configuration to build our dev environment.
This commit is contained in:
8
Vagrantfile
vendored
Normal file
8
Vagrantfile
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
# -*- mode: ruby -*-
|
||||
# vi: set ft=ruby :
|
||||
|
||||
Vagrant.configure("2") do |config|
|
||||
config.vm.box = "base"
|
||||
config.vm.provision :shell, :path => ".vagrant/provision.sh"
|
||||
config.vm.network "forwarded_port", guest: 5000, host: 8080
|
||||
end
|
||||
Reference in New Issue
Block a user