forked from diogocduarte/odoo_s3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
__manifest__.py
36 lines (32 loc) · 1.25 KB
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# -*- coding: utf-8 -*-
{
'name': "Odoo S3",
'summary': """
Allows you to use an aditional filestore with AWS S3.""",
'version': '1.1',
'description': """
The basis of the module is to allow the exact same structure of the odoo filestore
inside an S3 bucket. The default behaviour is always to consider the unavailabily
of an S3 connection. In all cases it will default to the flesystem. This makes
migrating from filestore to S3 seamless. Just install as a server wide module or
even in one only database.
After the propper key is loaded then the server will start witing new files to S3,
if available. To migrate just use the aws cli tool and copy all files in filestore
to the respective bucket, odoo will give priority to S3 bucket.
""",
'author': "Diogo Duarte",
'website': "http://diogocduarte.github.io/",
'category': 'Uncategorized',
'version': '0.1',
'depends': ['base', 'base_setup'],
'auto_install': True,
'external_dependencies': {
'python': ['awscli', 'boto3'],
},
'data': [
'data/filestore_data.xml',
'views/ir_attachment_views.xml',
'views/res_config_views.xml'
],
'installable': True
}