blob: 339ea3e685f6cb47c1fdf9af79a1494056c761f4 (
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
28
29
30
31
32
33
34
35
|
all: build
# Dev commands
start:
@nix-shell --command "tmuxinator local"
stop:
@nix-shell --command "tmuxinator stop ad-listener"
# Other commands
clean:
@stack clean > /dev/null
install:
@stack setup
watch: build
@nodemon --watch src --delay 0.2 -e hs,conf --exec 'clear && make build-and-launch'
build-and-launch:
@(pkill ad-listener || true) && (stack build && make run || true)
run:
@stack exec ad-listener
build:
@stack build
repl:
@stack repl
test:
@stack test
|