blob: 819db6e586fbb17689fdc5f94ff91097e5351f98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Minimal justfile for hyperstack.rb
set dotenv-load := false
set shell := ["/bin/bash", "-cu"]
hypr := "ruby -Ilib hyperstack.rb"
create-vm1:
{{hypr}} --vm 1 create
create-vm2:
{{hypr}} --vm 2 create
delete-vm1:
{{hypr}} --vm 1 delete
delete-vm2:
{{hypr}} --vm 2 delete
watch:
{{hypr}} watch
status:
{{hypr}} status
test:
{{hypr}} test
|