Anders Kitson
Anders Kitson

Reputation: 1545

Trying to install forever from npm

Forever from NPM installs just fine, but when I try and use it it gives me the following error

root@bray:/home# forever start bundle/main.js
warn:    --minUptime not set. Defaulting to: 1000ms
warn:    --spinSleepTime not set. Your script will exit if it does not stay up for at least 1000ms
info:    Forever processing file: bundle/main.js

Upvotes: 0

Views: 1143

Answers (1)

Tarang
Tarang

Reputation: 75955

That looks normal.

To check if you do actually have an error if your app isn't starting up

forever list

Then look for your meteor app in there. If it is there cat its logs

cat path_to_log_file_reported_by_forever

Upvotes: 2

Related Questions