__manifest__.py 1.1 KB

12345678910111213141516171819202122232425262728
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': "S3 Storages",
  4. 'summary': """
  5. Allows you to use a DigitalOcean Spaces bucket for file storage""",
  6. 'description': """
  7. Binary files such as attachments and pictures are stored by default
  8. in the file system of the host running Odoo. In some cases you may
  9. want to decrease the overall response time by delegating static file
  10. storage to a specialized instance such as an DigitalOcean Spaces bucket.
  11. This module allows you to configure Odoo so that an DigitalOcean Spaces bucket is
  12. used instead of the file system for binary files storage.
  13. """,
  14. 'author': "brolycjw, hp-bkeys",
  15. 'website': "http://primetechnologies.com.sg/, https://homeprotech.com/",
  16. # Categories can be used to filter modules in modules listing
  17. # Check https://github.com/odoo/odoo/blob/master/odoo/addons/base/module/module_data.xml
  18. # for the full list
  19. 'category': 'Technical Settings',
  20. 'version': '0.1',
  21. # any module necessary for this one to work correctly
  22. 'depends': ['base'],
  23. }