mirror of
https://github.com/valitydev/redash.git
synced 2024-11-07 09:28:51 +00:00
90f0b3b49a
Also reset circle.yml to be as in the main redash repo so our changes are not included in the changeset Check earlier PR https://github.com/getredash/redash/pull/1027 to follow conversation.
16 lines
492 B
Ruby
16 lines
492 B
Ruby
# -*- 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|
|
|
config.vm.box = "redash/dev"
|
|
config.vm.synced_folder "./", "/opt/redash/current"
|
|
config.vm.network "forwarded_port", guest: 5000, host: 9001
|
|
config.vm.provision "shell" do |s|
|
|
s.inline = "/opt/redash/current/setup/vagrant/provision.sh"
|
|
s.privileged = false
|
|
end
|
|
end
|