I want to launch Telescope , create an application with Meteor . But when I run it with Supervisord, I have this error in the log file:
/usr/local/bin/meteor: line 34: HOME: unbound variable
This is my supervisord configuration file:
[program:news]
directory=/srv/telescope
command=/usr/local/bin/meteor
autorestart=true
redirect_stderr=true
How to start Meteor app with Supervisord?
Thank.
source
share