Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
483 views
in Technique[技术] by (71.8m points)

ruby on rails - Heroku Killing all processes with signal SIGINT ends silently without any error

I am using heroku local to start my frontend and backend. Running heroku local -f Procfile.windows quits silently without throwing any error.

PS C:UsersYDesktopTaskManager-api> heroku local -f Procfile.windows
[DONE] Killing all processes with signal  SIGINT
9:40:47 AM web.1 Exited Successfully
9:40:47 AM api.1 Exited Successfully

I am following this tutorial to create a rails and react app. But I can't get heroku local to work properly.

I am developing in Windows env, tried running this code in vscode cmd, windows cmd, powershell and also with admin access. I also ran heroku update.

This is my Procfile.windows

web: SET PORT=4000 yarn --cwd task-manager-app start
api: SET PORT=3000 bundle exec rails server

And running yarn --cwd task-manager-app start and bundle exec rails server individually works fine.

question from:https://stackoverflow.com/questions/65660436/heroku-killing-all-processes-with-signal-sigint-ends-silently-without-any-error

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...