2020-02-19T14:40:49.465188+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=dooyou-test.herokuapp.com request_id=f12f160b-2e77-42a1-bcf8-8eb501b3d1c4 fwd="221.140.211.126" dyno= connect= service= status=503 bytes= protocol=https
이렇게 뜨는데 구글링해서 나오는거 다 해봤는데도
3분? 정도 지나면 다시.. 에러가 나서 접속이 안됨... ㅠㅠ
왜지 ????
데이터베이스 접속하면서 뭔가 에러가 나는건지.. 뭔지.....
참고한 것들 :
https://www.freecodecamp.org/forum/t/node-app-on-heroku-getting-application-error/170632/16
Node app on Heroku - getting “Application Error”
You only have this get route: app.get('/todo', function(req, res). So only when you go to /todo your express server will actually do something. If you want to always render the todo view you can use: app.get('*', function(req, res) Or if you only want / an
www.freecodecamp.org