mirror of
https://github.com/HackPlan/RootPanel.git
synced 2026-04-13 22:19:29 +08:00
26 lines
464 B
Makefile
26 lines
464 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: build
|
|
node node_modules/forever/bin/forever start app.js
|
|
|
|
restart:
|
|
node node_modules/forever/bin/forever restart app.js
|
|
|
|
stop:
|
|
node node_modules/forever/bin/forever stop app.js
|