upgrade: third party public and private addons are now dynamically cloned and extensible with a handy format

This commit is contained in:
yhaelopez
2023-12-19 02:17:56 -07:00
parent f9a6d5c1ab
commit f2be28ff3e
12 changed files with 140 additions and 103 deletions

View File

@@ -0,0 +1,2 @@
Delete me once you add your first extra addon :)
This folder is made for addons that are not clonable via GitHub.

View File

@@ -1,24 +0,0 @@
{
'name': 'Odoocker Base',
'summary': 'Supercharge Odoo with Odoocker',
'description': '''
Some Odoocker dependencies require to some custom values that we cover with this Addon for you.
''',
'version': '1.0.0',
'category': 'Technical',
'license': 'LGPL-3',
'author': 'Odoocker',
'maintainer': 'Odoocker',
'contributors': [
'Yhael S <yhaelopez@gmail.com>'
],
'depends': [
'base'
],
'data': [
'data/ir_config_parameter.xml'
],
'application': False,
'installable': True,
'auto_install': True
}

View File

@@ -1,14 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- When initializing Odoo through Docker this parameter is missing. -->
<record id="report_url" model="ir.config_parameter">
<field name="key">report.url</field>
<field name="value">http://127.0.0.1:8069</field>
</record>
<!-- When initializing Odoo with S3 storage. -->
<record id="ir_attachment_location" model="ir.config_parameter">
<field name="key">ir_attachment.location</field>
<field name="value">s3</field>
</record>
</odoo>