Tryton FileStore on Amazon S3 Cloud Storage

tryton-filestore-s3

It allows to store attachments on Amazon S3 cloud storage like:

In order to configure the Amazon S3 you should modify your trytond
configuration file to include the tryton_filestore_s3.FileStoreS3 as class
of the database section. Also you need to specify the s3 credentials
with the access_key, secret_key and bucket values.

An example configuration file looks like::

[database]
class=tryton_filestore_s3.FileStoreS3
access_key=access-key-s3
secret_key=secret-key-s3
bucket=bucket-id-here

Once you have specified the config file, everything should work out of the
box and you should see your attachments created on the S3 bucket.

Thanks

This module was developed by gcoop in association with Gotsho. Thanks
Gotsho for sharing this feature.

This code is based on Tryton FileStore on Google Cloud Storage implementation.

2 Likes