Всякий раз, когда я пытаюсь создать приложение, оно создается, но когда я пытаюсь создать среду, оно застревает в нескольких местах. Я приложил файл журнала ошибок ниже. Я также попробовал несколько решений. Как я стер все команды из require.txt. Я также создал новое приложение и новую среду снова, но он все еще застрял в тех же местах.
Мой файл require.txt выглядит следующим образом :
Django==2.1.5
django-filter==2.0.0
djangorestframework==3.9.0
Markdown==3.0.1
pytz==2018.7
django-timezone-field==3.0
django-rest-auth==0.9.3
django-allauth==0.39.1
django-cors-headers==2.4.0
psycopg2-binary==2.7.7
psycopg2==2.7.7
django-bootstrap4==0.0.8
django-fontawesome-5==1.0.16
Pillow==6.0.0
boto3==1.10.28
django-storages==1.7.1
django-smtp-ssl
django-ses
stripe==2.36.2
django-background-tasks==1.2.0
zappa==0.48.2
django-s3-storage==0.12.5
celery==4.4.0
pycurl==7.43.0.4
И мой django .config файл таков:
option_settings:
aws:elasticbeanstalk:container:python:
WSGIPath: SB_Main/wsgi.py
NumProcesses: 3
NumThreads: 30
"aws:elasticbeanstalk:container:python:staticfiles":
/static/: "static/"
container_commands:
01_makeMigrations:
command: "source /opt/python/run/venv/bin/activate && python manage.py makemigrations SB_Auth"
leader_only: true
02_makeMigrations:
command: "source /opt/python/run/venv/bin/activate && python manage.py makemigrations SB_API"
leader_only: true
03_migrate:
command: "source /opt/python/run/venv/bin/activate && python manage.py migrate"
leader_only: true
04_collectstatic:
command: "source /opt/python/run/venv/bin/activate && python manage.py collectstatic --noinput"
05_makeMigrations:
command: "source /opt/python/run/venv/bin/activate && python manage.py loaddata dummyData.json"
leader_only: true
06_wsgipass:
command: 'echo "WSGIPassAuthorization On" >> ../wsgi.conf'
Он также застревает здесь и выдает эту ошибку: