mirror of
https://codeberg.org/27/inception-of-things.git
synced 2025-12-31 21:56:41 +01:00
「✨」 feat: fixed the p1 so it launch in one command, no more --no-provision
This commit is contained in:
13
vm/Vagrantfile
vendored
Normal file
13
vm/Vagrantfile
vendored
Normal 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
|
||||
Reference in New Issue
Block a user