So, I want to test my app locally, but something goes wrong.
After installing virtualenv
, activating it, installing requirements.txt
and running collectstatic
I try to run app with
heroku local web -f Procfile.windows
I get
[OKAY] Loaded ENV .env File as KEY=VALUE Format
And that's all. I wait for about 30 mins and then stop execution. Then I get
16:07:33 web.1 | Unhandled exception in thread started by <function check_errors.<locals>.wrapper at 0x042BEF60>
16:07:33 web.1 | Traceback (most recent call last):
Traceback is empty. This is all output. Sometimes, when I wait for about only 1-2 minutes no messages appear at all.
File Procfile.windows
looks like:
web: python manage.py runserver 0.0.0.0:5000
What's wrong? Why this exception occurs?