I have a Django app that I created and am trying to deploy onto Google Cloud Platform. When I try to go to the given link after running gcloud app deploy
, I get a 502 Bad Gateway
error. Looking at the logs, I see this error:
gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3>
I looked this up and from this stackoverflow post, I tried running the following command locally:
gunicorn --log-file=- onbytes.wsgi:application
However, I get the error:
ModuleNotFoundError: No module named 'onbytes'
Nothing comes up when I look this up on google. I tried running pip3 install onbytes
but that failed to yield anything. Anyone know what's going on?