Skip to content

Commit 1f8a4f1

Browse files
committed
Add vagrant file
💥 💥
1 parent deb3cfe commit 1f8a4f1

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

Vagrantfile

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# -*- mode: ruby -*-
2+
# vi: set ft=ruby :
3+
4+
Vagrant.configure(2) do |config|
5+
config.vm.box = "unnati_xyz/datapipelines-workshop"
6+
7+
config.vm.network "public_network"
8+
9+
config.vm.provider "virtualbox" do |vb|
10+
# Display the VirtualBox GUI when booting the machine
11+
# vb.gui = true
12+
13+
# Customize the amount of memory on the VM:
14+
vb.memory = "2048"
15+
end
16+
17+
end

0 commit comments

Comments
 (0)