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