Модуль не найден pythonanywhere

Я развернул свой сайт на pythonanywhere. ссылка на сайт AbuTheRayhan.pythonanywhere.com но сервер говорит

Something went wrong :-(
Something went wrong while trying to load this website; please try again later.

If it is your site, you should check your logs to determine what the problem is.

В журнале ошибок

Error running WSGI application
 ModuleNotFoundError: No module named 'streamer'
 File "/var/www/abutherayhan_pythonanywhere_com_wsgi.py", line 14, in <module>
 application = get_wsgi_application()

код wsgi.py является

import os
import sys

path = '/home/AbuTheRayhan/video_uploader_with_django/streamer/video_streamer/video_streamer'
if path not in sys.path:
    sys.path.insert(0, path)

os.environ['DJANGO_SETTINGS_MODULE'] = 'streamer.settings'


from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()

проблема здесь(os.environ['DJANGO_SETTINGS_MODULE'] = 'streamer.settings' ). Что именно они хотят, чтобы я написал здесь?

Убедитесь, что /home/AbuTheRayhan/video_uploader_with_django/streamer/video_streamer/video_streamer/streamer/settings.py существует или измените значение path или DJANGO_SETTINGS_MODULE, чтобы соответствовать фактической структуре файлов проекта.

Вернуться на верх