6 lines
175 B
Plaintext
6 lines
175 B
Plaintext
|
#!/usr/bin/env sh
|
||
|
[ -z "$APP" ] && exit 1
|
||
|
cd /home/sites/$APP
|
||
|
pkill -F /home/sites/$APP.pid 2>/dev/null
|
||
|
plackup -s Starman -D -p 12080 ./bin/app.pl --pid /home/sites/$APP.pid
|