기타
No web processes running Django in heroku
woo11
2022. 1. 23. 09:26
heroku로 올린 웹 서비스(ex.django)에 접속했으나 떠있는 웹서비스가 없어서 heroku log 확인 시 제목과 같은 메시지가 나오는 경우입니다.
이 경우 터미널에서 heroku login을 한 뒤 아래의 명령을 입력한 후 확인하시면 정상적으로 작동이 됩니다.
heroku ps:scale web=1
참고자료
https://stackoverflow.com/questions/18552846/no-web-processes-running-django-in-heroku
No web processes running Django in heroku
I was trying to deploy my application in heroku, but when i finally try to run my application in heroku I het in the browser this: Application Error An error occurred in the application and your p...
stackoverflow.com