summaryrefslogtreecommitdiff
path: root/GNUmakefile
blob: c245c634901e8195ebffda65e76cb4cd7a00830f (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
PATH:=$(PATH):$(PWD)/node_modules/.bin
SHELL:=bash

.PHONY: check
check: ## make check  # Check syntax of eventline jobs
	eslint main.js
	(cd static; eslint index.js)

.PHONY: init
init: ## make init  # initialize project dependencies
	npm install

.PHONY: serve
serve: ## make serve  # run a self reloading nodejs web server
	nodemon main.js

.PHONY: run
run: ## make run  # run a production nodejs web server
	NODE_ENV=production node main.js

help:
	@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'

.DEFAULT_GOAL := help