diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-10-02 14:02:50 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-10-02 14:02:50 +0530 |
| commit | 5364332c05749268000c2ac3f0e6880f965e5fdc (patch) | |
| tree | 5f200ce04853d299f6f67b6ca545b5ed07a809b8 /justfile | |
| download | daffm-5364332c05749268000c2ac3f0e6880f965e5fdc.tar.gz daffm-5364332c05749268000c2ac3f0e6880f965e5fdc.zip | |
Init setup with simple tui
Diffstat (limited to 'justfile')
| -rw-r--r-- | justfile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/justfile b/justfile new file mode 100644 index 0000000..d22d7d2 --- /dev/null +++ b/justfile @@ -0,0 +1,14 @@ +default: + @just --choose + +run *args: + cabal run daffm -- {{args}} + +test *args: + cabal test {{args}} + +testw *args: + nodemon -e .hs -w lib -w specs --exec 'clear && just test {{args}}' + +build: + nix build |
