mirror of
https://github.com/HackPlan/RootPanel.git
synced 2026-03-29 16:48:02 +08:00
26 lines
467 B
Makefile
26 lines
467 B
Makefile
all: install
|
|
|
|
install:
|
|
npm install
|
|
|
|
build: install
|
|
node node_modules/coffee-script/bin/coffee -c .
|
|
|
|
test: build
|
|
bash run-test.bash
|
|
|
|
clean:
|
|
find . -path './node_modules' -prune -o -name '*.js' -exec rm -fr {} \;
|
|
|
|
run:
|
|
node node_modules/coffee-script/bin/coffee app.coffee
|
|
|
|
start: install
|
|
node node_modules/pm2/bin/pm2 -n RootPanel start app.coffee
|
|
|
|
restart:
|
|
node node_modules/pm2/bin/pm2 restart RootPanel
|
|
|
|
stop:
|
|
node node_modules/pm2/bin/pm2 delete RootPanel
|