I have a Procfile like this:
web: bundle exec unicorn -c config/unicorn.rb -E production
god: god -c services.god
but foreman start god
doesn't start...it's just say this:
17:14:32 god.1 | started with pid 29506
17:14:32 god.1 | exited with code 0
17:14:32 system | sending SIGTERM to all processes
SIGTERM received
if I run god -c services.god
, all services run fine...
Any ideas?
Thanks
You should not be running god with foreman. foreman is used to specify all the background (and web) processes in your application, and god is a process monitoring framework for those processes.
Typically, you should:
Procfile
(instead ofservices.god
), and useforeman start
to run them in development.That said, if you really want to run god from foreman: god runs as a daemon by default, and daemons don't work with foreman (see this wiki page). It should work if you pass the -D (Don't daemonize) option to god: