」 feat: fixed the p1 so it launch in one command, no more --no-provision

This commit is contained in:
2025-12-16 21:36:24 +01:00
parent c736c9f155
commit ab440e31c0
6 changed files with 63 additions and 23 deletions

13
vm/Vagrantfile vendored Normal file
View File

@ -0,0 +1,13 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "generic/debian12"
config.vm.box_version = "4.3.12"
config.vm.network "public_network"
config.vm.provision "shell", inline: <<-SHELL
apt-get update -y
apt-get install -y git curl
SHELL
end