export STATUS_DB_DRIVER:=sqlite3 export STATUS_DB_CREDENTIALS:=../db/status.db all: kill build run clean: @echo "Removing sqlite3 database..." @rm $$STATUS_DB_CREDENTIALS @echo "Removing binary..." @rm statuspage @echo "Done" build: go build -o statuspage run: ./statuspage & kill: @echo "Killing running instances..." @pkill statuspage || true