first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

20
node_modules/@expo/devcert/Vagrantfile generated vendored Normal file
View File

@@ -0,0 +1,20 @@
Vagrant.configure("2") do |config|
config.vm.define "mac" do |mac|
config.vm.box = "devcert/macos"
config.vm.network "public_network"
config.vm.define "linux" do |linux|
config.vm.box = "devcert/linux"
config.vm.network "public_network"
config.vm.define "windows" do |windows|
config.vm.box = "devcert/windows"
config.vm.network "public_network"
config.vm.provider "virtualbox" do |vb|
# Display the VirtualBox GUI when booting the machine
vb.gui = true
end
end