A
Проще не придумаешь
(впервые в жизни понадобилось писать собственный мидлвар)
Size: a a a
A
NC
A
A
RP
RP
R
.
├── docker-compose.yml
└── project
├── Dockerfile
├── __init__.py
├── __pycache__
│ └── __init__.cpython-37.pyc
├── celerybeat-schedule
├── core
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-37.pyc
│ │ ├── celery.cpython-37.pyc
│ │ ├── settings.cpython-37.pyc
│ │ └── tasks.cpython-37.pyc
│ ├── asgi.py
│ ├── celery.py
│ ├── settings.py
│ ├── tasks.py
│ ├── urls.py
│ └── wsgi.py
├── db.sqlite3
├── entrypoint.sh
├── manage.py
├── orders
│ ├── __init__.py
│ ├── admin.py
│ ├── apps.py
│ ├── migrations
│ │ ├── 0001_initial.py
│ │ └── __init__.py
│ ├── models.py
│ ├── tests.py
│ ├── urls.py
│ └── views.py
├── performance
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-37.pyc
│ │ └── models.cpython-37.pyc
│ ├── admin.py
│ ├── apps.py
│ ├── migrations
│ │ ├── 0001_initial.py
│ │ └── __init__.py
│ ├── models.py
│ ├── putintable.py
│ ├── tasks.py
│ ├── templates
│ │ └── performance
│ │ ├── index.html
│ │ └── wrapper.html
│ ├── tests.py
│ ├── urls.py
│ └── views.py
├── products.json
├── requirements.txt
└── templates
└── orders
└── order_list.html
AT
AT
R
Django==3.0.4
celery==4.4.6
redis==3.4.1
AT
AT
R
docker-compose up -d --build, но после твоего вопроса, я добавил строчку
requests==2.24.0, в requests.txt и все стало работать😅
R
VI
docker-compose up -d --build, но после твоего вопроса, я добавил строчку
requests==2.24.0, в requests.txt и все стало работать😅
AT
AT
ОШ
MS
S