Initial commit of local code

This commit is contained in:
martin.cholewa
2025-08-28 09:35:40 +02:00
commit 12ee092bda
21 changed files with 53 additions and 0 deletions

8
Vagrantfile vendored Normal file
View File

@@ -0,0 +1,8 @@
Vagrant.configure("2") do |config|
config.vm.define "node01" do |node|
node.vm.box = "bento/ubuntu-22.04"
node.vm.provider "parallels" do |prl|
prl.name = "node01"
end
end
end