mattn / goreman

foreman clone written in go language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

basedir

Jacky-Chang opened this issue · comments

how can i use -basedir option?
when i use like this: goreman start -basedir "/usr/local/etcd/Procfile"
i got an error: open Procfile: no such file or directory

I see the same issue. I had to cd into the directory goreman is installed into to workaround this issue.

The correct command should be like this:

goreman start -basedir "/usr/local/etcd" -f Profile

Note that the file "Profile" should be in the basedir

Thanks.