mirror of
https://github.com/valitydev/redash.git
synced 2024-11-07 09:28:51 +00:00
13 lines
431 B
Plaintext
13 lines
431 B
Plaintext
|
# -*- mode: ruby -*-
|
||
|
# vi: set ft=ruby :
|
||
|
|
||
|
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
|
||
|
VAGRANTFILE_API_VERSION = "2"
|
||
|
|
||
|
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
||
|
# Every Vagrant virtual environment requires a box to build off of.
|
||
|
config.vm.box = "box-cutter/debian76"
|
||
|
config.vm.provision "shell", path: "setup.sh"
|
||
|
config.vm.network "forwarded_port", guest: 80, host: 9001
|
||
|
end
|