Files
winos-config/vm_test/justfile
EthanShoeDev 35896a5eac add hyperv
2025-12-22 19:09:29 -05:00

26 lines
415 B
Makefile

set windows-shell := ["pwsh.exe", "-NoLogo", "-NoProfile", "-CommandWithArgs"]
# List commands
default:
@just --list
# Choose a command
choose:
@just --choose
# Up the vagrant box
up:
vagrant up
# Up the vagrant box
up-hyperv:
vagrant up --provider=hyperv
# Reload the vagrant box and provision it
reload:
vagrant reload --provision
# Destroy the vagrant box (forcefully)
nuke:
vagrant destroy -f