From cb5f3037bb18403433c2cfd0271f6bea76906aca Mon Sep 17 00:00:00 2001 From: Horus_Arch Date: Wed, 18 Feb 2015 17:03:41 +0100 Subject: Reimplementation with gorilla toolkit. --- Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..64c916d --- /dev/null +++ b/Makefile @@ -0,0 +1,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 -- cgit v1.2.3