26 lines
415 B
Makefile
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
|