mirror of
https://github.com/mtan93/homebridge.git
synced 2026-03-08 05:31:55 +00:00
13 lines
237 B
Bash
Executable File
13 lines
237 B
Bash
Executable File
#!/bin/sh
|
|
|
|
forever=`which forever`
|
|
|
|
test -z "$NODE_ENV" &&
|
|
export NODE_ENV='development'
|
|
|
|
if [ "$NODE_ENV" = "development" ]; then
|
|
$forever -f startup/forever/development.json
|
|
else
|
|
$forever start startup/forever/production.json
|
|
fi
|