Initial commit

This commit is contained in:
2025-10-07 08:39:41 -05:00
commit 09ee6feaed
15 changed files with 461 additions and 0 deletions

22
justfile Normal file
View File

@@ -0,0 +1,22 @@
[private]
@list:
just --list
[group("show")]
@show_37 *FLAGS:
uv run upload.py hdf-37.rc {{FLAGS}}
[group("show")]
@show_tnnt *FLAGS:
uv run upload.py hdf-tnnt.rc {{FLAGS}}
[group("upload")]
@v37 *FLAGS:
uv run upload.py hdf-37.rc -v nethack {{FLAGS}}
[group("upload")]
@tnnt *FLAGS:
uv run upload.py hdf-tnnt.rc -v tnnt {{FLAGS}}
[group("upload")]
all *FLAGS: (v37 FLAGS) (tnnt FLAGS)