summaryrefslogtreecommitdiff
path: root/Makefile
blob: 64c916d7dacbec6b042a3ff172bef544a63d1671 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export STATUS_DB_DRIVER:=sqlite3
export STATUS_DB_CREDENTIALS:=status.db

all: kill build run

clean:
	rm status.db
	rm statuspage

build:
	go build

run:
	./statuspage & 

kill:
	pkill statuspage || true