Good afternoon, community. I'm experiencing a problem trying to install a message-sending module in Odoo SH. This module uses the Twilio package. I've already added the requirement.txt to the project root, and when I try to deploy it, it takes a long time and times out. Do you have any suggestions?
{
'name': 'Twilio SMS',
'version': '1.0',
'summary': 'Integración de Twilio SMS para Odoo',
'category': 'Tools',
'author': '',
'depends': ['base', 'sms', 'mail', 'sign', 'web', 'website'],
'data': [
'views/sms_override_view.xml',
'views/sign_override_view.xml',
'views/mail_templates.xml'
],
"assets": {
"web.assets_frontend": [
"/twilio_sms/static/src/components/sign_otp_verification/*",
]
},
'installable': True,
'application': True,
"auto_install": False,
"license": "LGPL-3",
}
Hi, Ray Carnes. Yes, the
requirements.txt only contains this package.
twilio==9.5.0