egoist/vuepack

App crashed after deployed on Heroku. But it's working in my local.

eagle19243 opened this issue ยท 17 comments

I just installed this project on my local and deploy it on heroku.
It is working on my local, but crashed on heroku.
2017-08-25T06:30:25.001177+00:00 app[web.1]: > VuePack is running at http://localhost:4000 2017-08-25T06:30:25.001179+00:00 app[web.1]: 2017-08-25T06:31:06.348236+00:00 heroku[web.1]: Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch 2017-08-25T06:31:06.348326+00:00 heroku[web.1]: Stopping process with SIGKILL 2017-08-25T06:31:06.564701+00:00 heroku[web.1]: Process exited with status 137 2017-08-25T06:31:06.578860+00:00 heroku[web.1]: State changed from starting to crashed 2017-08-25T06:35:36.332773+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=webber.herokuapp.com request_id=b2434d56-7222-46e4-822b-11440bbc94a3 fwd="118.163.202.115" dyno= connect= service= status=503 bytes= protocol=https 2017-08-25T06:35:37.269529+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=webber.herokuapp.com request_id=de3f5728-b7d5-4c61-a3e0-4bd2e9911bf1 fwd="118.163.202.115" dyno= connect= service= status=503 bytes= protocol=https

What is my fault?

https://stackoverflow.com/questions/15693192/heroku-node-js-error-web-process-failed-to-bind-to-port-within-60-seconds-of

within server.js change the last line to

server.listen(process.env.PORT || port)

THIS SOLUTION IS FOR GO
When you deploy an app through heroku, it does not allow you to specify the port number.
In other words, you can not specify your web service's port number as 8000 or something else, heroku decides the port number in runtime.
so, you can not use the following code:

    log.Fatal(http.ListenAndServe(":8000", router))

What you can do is, getting the runtime port of heroku.
In short, just use the following code:

    log.Fatal(http.ListenAndServe(":" + os.Getenv("PORT"), router))

npm ERR! express@0.0.0 start: node login.js
2018-09-10T13:23:12.534702+00:00 app[web.1]: npm ERR! Exit status 1
2018-09-10T13:23:12.535413+00:00 app[web.1]: npm ERR! Failed at the express@0.0.0 start script.
2018-09-10T13:23:12.535093+00:00 app[web.1]: npm ERR!
2018-09-10T13:23:12.535631+00:00 app[web.1]: npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
2018-09-10T13:23:12.579548+00:00 app[web.1]:
2018-09-10T13:23:12.579924+00:00 app[web.1]: npm ERR! A complete log of this run can be found in:
2018-09-10T13:23:12.580149+00:00 app[web.1]: npm ERR! /app/.npm/_logs/2018-09-10T13_23_12_537Z-debug.log
2018-09-10T13:23:15.647861+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=medizone.herokuapp.com request_id=846ae50b-6d36-458a-9c4a-1d83d10e1e77 fwd="182.72.162.2" dyno= connect= service= status=503 bytes= protocol=https
2018-09-10T13:23:16.737398+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=medizone.herokuapp.com request_id=d5c3edda-d679-45ad-84bd-5700840c6e34 fwd="182.72.162.2" dyno= connect= service= status=503 bytes= protocol=https
2018-09-10T13:28:01.190561+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=medizone.herokuapp.com request_id=fb1ea913-ee38-430d-9bc1-e523f8ba8c74 fwd="182.72.162.2" dyno= connect= service= status=503 bytes= protocol=https
2018-09-10T13:28:16.416905+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=medizone.herokuapp.com request_id=d0f2c7c6-a6a0-44f5-b7fe-9490464e9284 fwd="182.72.162.2" dyno= connect= service= status=503 bytes= protocol=http

i have same error what do now

mv29 commented

I am also still having this error, in spite of implementing the above solution

@celikmustafa89 Thank you ๐Ÿ‘

i have the same get error with deploy python Flask framework web app ..

2018-11-06T10:56:20.915305+00:00 heroku[web.1]: Process exited with status 1
2018-11-06T10:56:22.176106+00:00 heroku[router]: at=error code=H10 desc="App cra
shed" method=GET path="/" host=iris-falahgs.herokuapp.com request_id=296c3c1e-d0
65-4078-bfb3-f18fb3646a6b fwd="5.10.227.225" dyno= connect= service= status=503
bytes= protocol=https
2018-11-06T10:56:22.707178+00:00 heroku[router]: at=error code=H10 desc="App cra
shed" method=GET path="/favicon.ico" host=iris-falahgs.herokuapp.com request_id=
fee969f5-c2d6-4c01-b324-9b18406a0ac6 fwd="5.10.227.225" dyno= connect= service=
status=503 bytes= protocol=https
2018-11-06T10:57:22.424624+00:00 heroku[router]: at=error code=H10 desc="App cra
shed" method=GET path="/" host=iris-falahgs.herokuapp.com request_id=57b98894-ce
03-4462-b7b8-541bb16be0aa fwd="5.10.227.250" dyno= connect= service= status=503
bytes= protocol=https
2018-11-06T10:57:22.849041+00:00 heroku[router]: at=error code=H10 desc="App cra
shed" method=GET path="/favicon.ico" host=iris-falahgs.herokuapp.com request_id=
6689a968-2be3-4f6c-b364-126f22481521 fwd="5.10.227.250" dyno= connect= service=
status=503 bytes= protocol=https
2018-11-06T10:58:24.491245+00:00 heroku[router]: at=error code=H10 desc="App cra
shed" method=GET path="/" host=iris-falahgs.herokuapp.com request_id=71870daa-2b
43-4023-b1ea-adf81bc2c25f fwd="5.10.227.250" dyno= connect= service= status=503
bytes= protocol=https
2018-11-06T10:58:24.895504+00:00 heroku[router]: at=error code=H10 desc="App cra
shed" method=GET path="/favicon.ico" host=iris-falahgs.herokuapp.com request_id=
fd6603ee-df79-4e93-993e-d8060013aaac fwd="5.10.227.250" dyno= connect= service=
status=503 bytes= protocol=https

I am getting the same error in my NodeJs app.
2019-06-11T05:29:19.018128+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=recorder-server-pkr.herokuapp.com request_id=f1716e8c-ff86-43fa-b586-2c2acfd6586d fwd="157.35.238.16" dyno= connect= service= status=503 bytes= protocol=https

hey bro @PraveenKumarRana did your issue get resolved?? I am facing same issue in my MERN STACK app.. any help would be appreciated....

Release v2 created by user divya1shahi@gmail.com
2019-10-07T13:29:31.853821+00:00 app[api]: Initial release by user divya1shahi@gmail.com
2019-10-07T13:29:31.853821+00:00 app[api]: Release v1 created by user divya1shahi@gmail.com
2019-10-07T13:29:32.144243+00:00 app[api]: Enable Logplex by user divya1shahi@gmail.com
2019-10-07T13:30:28+00:00 app[api]: Build started by user divya1shahi@gmail.com
2019-10-07T13:30:41.32156+00:00 app[api]: Deploy d5eecb2e by user divya1shahi@gmail.com
2019-10-07T13:30:41.32156+00:00 app[api]: Release v3 created by user divya1shahi@gmail.com
2019-10-07T13:30:41.341729+00:00 app[api]: Scaled to web@1:Free by user divya1shahi@gmail.com
2019-10-07T13:30:41+00:00 app[api]: Build succeeded
2019-10-07T13:30:43.113308+00:00 heroku[web.1]: Starting process with command : node app.js
2019-10-07T13:30:44.645634+00:00 heroku[web.1]: Process exited with status 0
2019-10-07T13:30:44.692306+00:00 heroku[web.1]: State changed from starting to crashed
2019-10-07T13:30:44.695822+00:00 heroku[web.1]: State changed from crashed to starting
2019-10-07T13:30:47.323227+00:00 heroku[web.1]: Starting process with command : node app.js
2019-10-07T13:30:50.212936+00:00 heroku[web.1]: Process exited with status 0
2019-10-07T13:30:50.27414+00:00 heroku[web.1]: State changed from starting to crashed
2019-10-07T13:32:08.62274+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=polar-fortress-34906.herokuapp.com request_id=1d54d10e-afe7-49f3-b510-56d82c69d9f7 fwd="49.38.225.190" dyno= connect= service= status=503 bytes= protocol=https
2019-10-07T13:32:09.420125+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=polar-fortress-34906.herokuapp.com request_id=69b098e2-26a9-417f-a3bd-43be9ab99e2a fwd="49.38.225.190" dyno= connect= service= status=503 bytes= protocol=https
2019-10-07T13:32:24.887388+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=polar-fortress-34906.herokuapp.com request_id=c4c59971-24fc-4f87-b5e6-96ccdb3ecadd fwd="49.38.225.190" dyno= connect= service= status=503 bytes= protocol=https
2019-10-07T13:32:25.394087+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=polar-fortress-34906.herokuapp.com request_id=b906319f-a722-49bb-bad6-834019ff4faf fwd="49.38.225.190" dyno= connect= service= status=503 bytes= protocol=https
2019-10-07T13:34:44.761975+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=polar-fortress-34906.herokuapp.com request_id=777c072a-4360-4ac6-b454-59f44d36b2b3 fwd="49.38.225.190" dyno= connect= service= status=503 bytes= protocol=https
2019-10-07T13:34:45.373714+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=polar-fortress-34906.herokuapp.com request_id=ee2424b6-aafc-4a03-b213-72f114fe0416 fwd="49.38.225.190" dyno= connect= service= status=503 bytes= protocol=https
2019-10-07T13:42:25.232025+00:00 heroku[web.1]: State changed from crashed to starting
2019-10-07T13:42:27.660467+00:00 heroku[web.1]: Starting process with command : node app.js
2019-10-07T13:42:30.524162+00:00 heroku[web.1]: Process exited with status 0
2019-10-07T13:42:30.590531+00:00 heroku[web.1]: State changed from starting to crashed
2019-10-07T13:42:30.59387+00:00 heroku[web.1]: State changed from crashed to starting
2019-10-07T13:42:32.682809+00:00 heroku[web.1]: Starting process with command : node app.js
2019-10-07T13:42:34.799657+00:00 heroku[web.1]: Process exited with status 0
2019-10-07T13:42:34.85436+00:00 heroku[web.1]: State changed from starting to crashed

I am too getting this error but unable to figure out what may have caused it

Process exited with status 1
2020-03-31T17:47:01.934931+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/incident" host=alissonapi.herokuapp.com request_id=fdd3917d-46e1-4377-a65b-b3f48cad502a fwd="191.253.170.228" dyno= connect= service= status=503 bytes= protocol=https
2020-03-31T17:47:03.541397+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=alissonapi.herokuapp.com request_id=26d95fb9-9842-44d0-b1b6-68a3e1aef0d7 fwd="191.253.170.228" dyno= connect= service= status=503 bytes= protocol=https
2020-03-31T17:47:04.499534+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/incident" host=alissonapi.herokuapp.com request_id=67a00650-cda9-4931-af0c-5d9bcd48e2db fwd="191.253.170.228" dyno= connect= service= status=503 bytes= protocol=https
2020-03-31T17:47:06.158489+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=alissonapi.herokuapp.com request_id=43d674ad-b40b-4bf7-8edb-3643b3abec3c fwd="191.253.170.228" dyno= connect= service= status=503 bytes= protocol=https
2020-03-31T17:47:08.209114+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/incidents" host=alissonapi.herokuapp.com request_id=3b4bb0a9-ccd1-4472-b7e4-6157b29cdc0e fwd="191.253.170.228" dyno= connect= service= status=503 bytes= protocol=https
2020-03-31T17:47:10.458521+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=alissonapi.herokuapp.com request_id=58f2949f-f8ad-4512-910f-6f6066d91dcf fwd="191.253.170.228" dyno= connect= service= status=503 bytes= protocol=https
2020-03-31T17:47:11.541621+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/incidents" host=alissonapi.herokuapp.com request_id=eee5ab89-ee58-418c-b774-a30948594c51 fwd="191.253.170.228" dyno= connect= service= status=503 bytes= protocol=https
2020-03-31T17:47:15.742805+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=alissonapi.herokuapp.com request_id=1551c843-ccc4-4ac7-ba71-f901716a74d5 fwd="191.253.170.228" dyno= connect= service= status=503 bytes= protocol=https****

Ajuda aiiiiiii****

same problem i m facing

same problem i m facing

#145 (comment)
This worked for me

in python how to solve it

Anyone please help me .I am also getting the same error . i need an urgent help. I am using django and python 3.6.10 along with tensorflow =2.1 and keras

Microsoft Windows [Version 6.3.9600]
(c) 2013 Microsoft Corporation. All rights reserved.

C:\windows\system32>heroku logs --tail
ยป Error: Missing required flag:
ยป -a, --app APP app to run command against
ยป See more help with --help

C:\windows\system32>heroku logs --tail -a healtech
2021-01-11T15:02:05.933848+00:00 app[web.1]: [2021-01-11 15:02:05 +0000] [11] [I
NFO] Worker exiting (pid: 11)
2021-01-11T15:02:05.933853+00:00 app[web.1]: [2021-01-11 15:02:05 +0000] [10] [E
RROR] Exception in worker process
2021-01-11T15:02:05.933854+00:00 app[web.1]: Traceback (most recent call last):
2021-01-11T15:02:05.933855+00:00 app[web.1]: File "/app/.heroku/python/lib/pytho
n3.6/site-packages/gunicorn/arbiter.py", line 583, in spawn_worker
2021-01-11T15:02:05.933855+00:00 app[web.1]: worker.init_process()
2021-01-11T15:02:05.933855+00:00 app[web.1]: File "/app/.heroku/python/lib/pytho
n3.6/site-packages/gunicorn/workers/base.py", line 119, in init_process
2021-01-11T15:02:05.933856+00:00 app[web.1]: self.load_wsgi()
2021-01-11T15:02:05.933856+00:00 app[web.1]: File "/app/.heroku/python/lib/pytho
n3.6/site-packages/gunicorn/workers/base.py", line 144, in load_wsgi
2021-01-11T15:02:05.933856+00:00 app[web.1]: self.wsgi = self.app.wsgi()
2021-01-11T15:02:05.933857+00:00 app[web.1]: File "/app/.heroku/python/lib/pytho
n3.6/site-packages/gunicorn/app/base.py", line 67, in wsgi
2021-01-11T15:02:05.933857+00:00 app[web.1]: self.callable = self.load()
2021-01-11T15:02:05.933857+00:00 app[web.1]: File "/app/.heroku/python/lib/pytho
n3.6/site-packages/gunicorn/app/wsgiapp.py", line 49, in load
2021-01-11T15:02:05.933858+00:00 app[web.1]: return self.load_wsgiapp()
2021-01-11T15:02:05.933858+00:00 app[web.1]: File "/app/.heroku/python/lib/pytho
n3.6/site-packages/gunicorn/app/wsgiapp.py", line 39, in load_wsgiapp
2021-01-11T15:02:05.933859+00:00 app[web.1]: return util.import_app(self.app_uri
)
2021-01-11T15:02:05.933859+00:00 app[web.1]: File "/app/.heroku/python/lib/pytho
n3.6/site-packages/gunicorn/util.py", line 358, in import_app
2021-01-11T15:02:05.933859+00:00 app[web.1]: mod = importlib.import_module(modul
e)
2021-01-11T15:02:05.933860+00:00 app[web.1]: File "/app/.heroku/python/lib/pytho
n3.6/importlib/init.py", line 126, in import_module
2021-01-11T15:02:05.933860+00:00 app[web.1]: return _bootstrap._gcd_import(name[
level:], package, level)
2021-01-11T15:02:05.933861+00:00 app[web.1]: File "
", line 994, in _gcd_import
2021-01-11T15:02:05.933861+00:00 app[web.1]: File "
", line 971, in _find_and_load
2021-01-11T15:02:05.933861+00:00 app[web.1]: File "
", line 941, in _find_and_load_unlocked
2021-01-11T15:02:05.933862+00:00 app[web.1]: File "
", line 219, in _call_with_frames_removed
2021-01-11T15:02:05.933862+00:00 app[web.1]: File "
", line 994, in _gcd_import
2021-01-11T15:02:05.933863+00:00 app[web.1]: File "
", line 971, in _find_and_load
2021-01-11T15:02:05.933863+00:00 app[web.1]: File "
", line 953, in _find_and_load_unlocked
2021-01-11T15:02:05.933913+00:00 app[web.1]: ModuleNotFoundError: No module name
d 'HealTech'
2021-01-11T15:02:05.941551+00:00 app[web.1]: [2021-01-11 15:02:05 +0000] [10] [I
NFO] Worker exiting (pid: 10)
2021-01-11T15:02:06.156671+00:00 app[web.1]: [2021-01-11 15:02:06 +0000] [4] [IN
FO] Shutting down: Master
2021-01-11T15:02:06.157400+00:00 app[web.1]: [2021-01-11 15:02:06 +0000] [4] [IN
FO] Reason: Worker failed to boot.
2021-01-11T15:02:06.354673+00:00 heroku[web.1]: Process exited with status 3
2021-01-11T15:02:06.404737+00:00 heroku[web.1]: State changed from up to crashed

2021-01-11T15:02:06.408675+00:00 heroku[web.1]: State changed from crashed to st
arting
2021-01-11T15:02:49.936312+00:00 heroku[web.1]: Starting process with command g unicorn HealTech.wsgi --log-file -
2021-01-11T15:02:50.000000+00:00 app[api]: Build succeeded
2021-01-11T15:02:54.195478+00:00 app[web.1]: [2021-01-11 15:02:54 +0000] [4] [IN
FO] Starting gunicorn 20.0.4
2021-01-11T15:02:54.196657+00:00 app[web.1]: [2021-01-11 15:02:54 +0000] [4] [IN
FO] Listening at: http://0.0.0.0:36107 (4)
2021-01-11T15:02:54.201883+00:00 app[web.1]: [2021-01-11 15:02:54 +0000] [4] [IN
FO] Using worker: sync
2021-01-11T15:02:54.217181+00:00 app[web.1]: [2021-01-11 15:02:54 +0000] [10] [I
NFO] Booting worker with pid: 10
2021-01-11T15:02:54.234018+00:00 app[web.1]: [2021-01-11 15:02:54 +0000] [10] [E
RROR] Exception in worker process
2021-01-11T15:02:54.234035+00:00 app[web.1]: Traceback (most recent call last):
2021-01-11T15:02:54.234040+00:00 app[web.1]: File "/app/.heroku/python/lib/pytho
n3.6/site-packages/gunicorn/arbiter.py", line 583, in spawn_worker
2021-01-11T15:02:54.234045+00:00 app[web.1]: worker.init_process()
2021-01-11T15:02:54.234045+00:00 app[web.1]: File "/app/.heroku/python/lib/pytho
n3.6/site-packages/gunicorn/workers/base.py", line 119, in init_process
2021-01-11T15:02:54.234046+00:00 app[web.1]: self.load_wsgi()
2021-01-11T15:02:54.234046+00:00 app[web.1]: File "/app/.heroku/python/lib/pytho
n3.6/site-packages/gunicorn/workers/base.py", line 144, in load_wsgi
2021-01-11T15:02:54.234046+00:00 app[web.1]: self.wsgi = self.app.wsgi()
2021-01-11T15:02:54.234051+00:00 app[web.1]: File "/app/.heroku/python/lib/pytho
n3.6/site-packages/gunicorn/app/base.py", line 67, in wsgi
2021-01-11T15:02:54.234051+00:00 app[web.1]: self.callable = self.load()
2021-01-11T15:02:54.234051+00:00 app[web.1]: File "/app/.heroku/python/lib/pytho
n3.6/site-packages/gunicorn/app/wsgiapp.py", line 49, in load
2021-01-11T15:02:54.234052+00:00 app[web.1]: return self.load_wsgiapp()
2021-01-11T15:02:54.234052+00:00 app[web.1]: File "/app/.heroku/python/lib/pytho
n3.6/site-packages/gunicorn/app/wsgiapp.py", line 39, in load_wsgiapp
2021-01-11T15:02:54.234052+00:00 app[web.1]: return util.import_app(self.app_uri
)
2021-01-11T15:02:54.234053+00:00 app[web.1]: File "/app/.heroku/python/lib/pytho
n3.6/site-packages/gunicorn/util.py", line 358, in import_app
2021-01-11T15:02:54.234053+00:00 app[web.1]: mod = importlib.import_module(modul
e)
2021-01-11T15:02:54.234053+00:00 app[web.1]: File "/app/.heroku/python/lib/pytho
n3.6/importlib/init.py", line 126, in import_module
2021-01-11T15:02:54.234054+00:00 app[web.1]: return _bootstrap._gcd_import(name[
level:], package, level)
2021-01-11T15:02:54.234054+00:00 app[web.1]: File "
", line 994, in _gcd_import
2021-01-11T15:02:54.234055+00:00 app[web.1]: File "
", line 971, in _find_and_load
2021-01-11T15:02:54.234055+00:00 app[web.1]: File "
", line 941, in _find_and_load_unlocked
2021-01-11T15:02:54.234056+00:00 app[web.1]: File "
", line 219, in _call_with_frames_removed
2021-01-11T15:02:54.234056+00:00 app[web.1]: File "
", line 994, in _gcd_import
2021-01-11T15:02:54.234056+00:00 app[web.1]: File "
", line 971, in _find_and_load
2021-01-11T15:02:54.234057+00:00 app[web.1]: File "
", line 953, in _find_and_load_unlocked
2021-01-11T15:02:54.236531+00:00 app[web.1]: ModuleNotFoundError: No module name
d 'HealTech'
2021-01-11T15:02:54.236949+00:00 app[web.1]: [2021-01-11 15:02:54 +0000] [10] [I
NFO] Worker exiting (pid: 10)
2021-01-11T15:02:54.298315+00:00 app[web.1]: [2021-01-11 15:02:54 +0000] [11] [I
NFO] Booting worker with pid: 11
2021-01-11T15:02:54.308096+00:00 app[web.1]: [2021-01-11 15:02:54 +0000] [11] [E
RROR] Exception in worker process
2021-01-11T15:02:54.308099+00:00 app[web.1]: Traceback (most recent call last):
2021-01-11T15:02:54.308100+00:00 app[web.1]: File "/app/.heroku/python/lib/pytho
n3.6/site-packages/gunicorn/arbiter.py", line 583, in spawn_worker
2021-01-11T15:02:54.308100+00:00 app[web.1]: worker.init_process()
2021-01-11T15:02:54.308101+00:00 app[web.1]: File "/app/.heroku/python/lib/pytho
n3.6/site-packages/gunicorn/workers/base.py", line 119, in init_process
2021-01-11T15:02:54.308101+00:00 app[web.1]: self.load_wsgi()
2021-01-11T15:02:54.308102+00:00 app[web.1]: File "/app/.heroku/python/lib/pytho
n3.6/site-packages/gunicorn/workers/base.py", line 144, in load_wsgi
2021-01-11T15:02:54.308102+00:00 app[web.1]: self.wsgi = self.app.wsgi()
2021-01-11T15:02:54.308103+00:00 app[web.1]: File "/app/.heroku/python/lib/pytho
n3.6/site-packages/gunicorn/app/base.py", line 67, in wsgi
2021-01-11T15:02:54.308103+00:00 app[web.1]: self.callable = self.load()
2021-01-11T15:02:54.308104+00:00 app[web.1]: File "/app/.heroku/python/lib/pytho
n3.6/site-packages/gunicorn/app/wsgiapp.py", line 49, in load
2021-01-11T15:02:54.308104+00:00 app[web.1]: return self.load_wsgiapp()
2021-01-11T15:02:54.308105+00:00 app[web.1]: File "/app/.heroku/python/lib/pytho
n3.6/site-packages/gunicorn/app/wsgiapp.py", line 39, in load_wsgiapp
2021-01-11T15:02:54.308105+00:00 app[web.1]: return util.import_app(self.app_uri
)
2021-01-11T15:02:54.308105+00:00 app[web.1]: File "/app/.heroku/python/lib/pytho
n3.6/site-packages/gunicorn/util.py", line 358, in import_app
2021-01-11T15:02:54.308106+00:00 app[web.1]: mod = importlib.import_module(modul
e)
2021-01-11T15:02:54.308106+00:00 app[web.1]: File "/app/.heroku/python/lib/pytho
n3.6/importlib/init.py", line 126, in import_module
2021-01-11T15:02:54.308106+00:00 app[web.1]: return _bootstrap._gcd_import(name[
level:], package, level)
2021-01-11T15:02:54.308107+00:00 app[web.1]: File "
", line 994, in _gcd_import
2021-01-11T15:02:54.308107+00:00 app[web.1]: File "
", line 971, in _find_and_load
2021-01-11T15:02:54.308108+00:00 app[web.1]: File "
", line 941, in _find_and_load_unlocked
2021-01-11T15:02:54.308108+00:00 app[web.1]: File "
", line 219, in _call_with_frames_removed
2021-01-11T15:02:54.308108+00:00 app[web.1]: File "
", line 994, in _gcd_import
2021-01-11T15:02:54.308109+00:00 app[web.1]: File "
", line 971, in _find_and_load
2021-01-11T15:02:54.308109+00:00 app[web.1]: File "
", line 953, in _find_and_load_unlocked
2021-01-11T15:02:54.308117+00:00 app[web.1]: ModuleNotFoundError: No module name
d 'HealTech'
2021-01-11T15:02:54.308851+00:00 app[web.1]: [2021-01-11 15:02:54 +0000] [11] [I
NFO] Worker exiting (pid: 11)
2021-01-11T15:02:54.469000+00:00 app[web.1]: [2021-01-11 15:02:54 +0000] [4] [IN
FO] Shutting down: Master
2021-01-11T15:02:54.469216+00:00 app[web.1]: [2021-01-11 15:02:54 +0000] [4] [IN
FO] Reason: Worker failed to boot.
2021-01-11T15:02:54.621000+00:00 heroku[web.1]: Process exited with status 3
2021-01-11T15:02:54.699115+00:00 heroku[web.1]: State changed from starting to c
rashed
2021-01-11T15:02:59.805850+00:00 heroku[router]: at=error code=H10 desc="App cra
shed" method=GET path="/" host=healtech.herokuapp.com request_id=6d60bf79-9e4d-4
786-9ae7-054c3aef4473 fwd="157.40.20.59" dyno= connect= service= status=503 byte
s= protocol=https
2021-01-11T15:03:01.374208+00:00 heroku[router]: at=error code=H10 desc="App cra
shed" method=GET path="/favicon.ico" host=healtech.herokuapp.com request_id=84f9
9215-a069-4666-a403-0481d927b106 fwd="157.40.20.59" dyno= connect= service= stat
us=503 bytes= protocol=https