From 2bbaa84714020478b87ac7cea4d5bd7be8d25f16 Mon Sep 17 00:00:00 2001 From: Yhael S Date: Sat, 7 Oct 2023 00:01:34 -0500 Subject: [PATCH] cleanup --- odoo/odoo.conf | 10 ++++++---- odoo/third-party-addons.sh | 3 +-- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/odoo/odoo.conf b/odoo/odoo.conf index 6346b75..39b7ccc 100644 --- a/odoo/odoo.conf +++ b/odoo/odoo.conf @@ -293,16 +293,18 @@ ODOO_SESSION_REDIS_EXPIRATION_ANONYMOUS = ${ODOO_SESSION_REDIS_EXPIRATION_ANONYM ;----------; ; S3 ; ;----------; -; Disable S3 storage +; -- Disable S3 storage DISABLE_ATTACHMENT_STORAGE = ${DISABLE_ATTACHMENT_STORAGE} -; Not required if using AWS S3 +; -- Not required if using AWS S3 AWS_HOST = ${AWS_HOST} -; Required if using AWS services +; -- Required if using AWS services AWS_REGION = ${AWS_REGION} + +; -- AWS Authentication AWS_ACCESS_KEY_ID = ${AWS_ACCESS_KEY_ID} AWS_SECRET_ACCESS_KEY = ${AWS_SECRET_ACCESS_KEY} -; Optional ${db_name} placeholder +; Optional db_name placeholder AWS_BUCKETNAME = ${AWS_BUCKETNAME} diff --git a/odoo/third-party-addons.sh b/odoo/third-party-addons.sh index 9d1ec73..a34bc85 100755 --- a/odoo/third-party-addons.sh +++ b/odoo/third-party-addons.sh @@ -16,6 +16,5 @@ redis_manifest="${THIRD_PARTY_ADDONS}/session_redis/__manifest__.py" s3_manifest="${THIRD_PARTY_ADDONS}/attachment_s3/__manifest__.py" # Modify the manifest file -# python3 /fix-manifest.py $redis_manifest -python3 /fix-manifest.py $s3_manifest python3 /fix-manifest.py $redis_manifest +python3 /fix-manifest.py $s3_manifest