mirror of
https://github.com/HackPlan/RootPanel.git
synced 2026-01-12 22:27:09 +08:00
17 lines
245 B
Makefile
17 lines
245 B
Makefile
all: install
|
|
|
|
install:
|
|
npm install
|
|
|
|
run:
|
|
node start.js
|
|
|
|
start:
|
|
node node_modules/forever/bin/forever start start.js
|
|
|
|
restart:
|
|
node node_modules/forever/bin/forever restart start.js
|
|
|
|
stop:
|
|
node node_modules/forever/bin/forever stop start.js
|