blob: 8fc38cddd0c5ade5fd4e2e0b3c3a2cab632eacf8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
default:
@just --choose
run *args:
cabal run chelleport -- {{args}}
test *args:
cabal test {{args}}
testw *args:
# nodemon -e .hs -w src --exec 'ghcid -c "cabal repl test:specs" -T :main'
nodemon -e .hs -w src -w specs --exec 'clear && just test {{args}}'
build:
nix build
appimage:
nix bundle --bundler github:ralismark/nix-appimage
|