Reputation: 31635
I'm making a monorepo nodejs app and I would like to specify a Procfile
for each package in my monorepo.
So far what I found is that the Procfile
file needs to be in the root folder.
How can I specify the path to the desired Procfile
?
For example
my-app/
packages/
server/
...other files
Procfile
web/
...other files
And use the Procfile
in packages/server/Procfile
.
Upvotes: 1
Views: 3316