diff options
| -rwxr-xr-x | Koifile | 10 | ||||
| -rw-r--r-- | justfile | 12 |
2 files changed, 12 insertions, 10 deletions
diff --git a/Koifile b/Koifile deleted file mode 100755 index 379b9a38..00000000 --- a/Koifile +++ /dev/null @@ -1,10 +0,0 @@ -fn all() { dev() } - -fn dev() { $(bun run dev --host) } - -fn vpn() { - piactl disconnect - piactl connect -} - -fn check() { $(bun --bun run check) } diff --git a/justfile b/justfile new file mode 100644 index 00000000..342fc030 --- /dev/null +++ b/justfile @@ -0,0 +1,12 @@ +default: + @just --list + +dev: + bun run dev --host + +check: + bun --bun run check + +vpn: + piactl disconnect + piactl connect |