I have used saleor,django store and hosted it on google cloud, It is working fine. Now what I wanted to do is to host media files on S3 bucket. I have created a bucket and tried some tutorials but no success. I could not find any complete step by step guide for this. If anyone can help me with this problem it will be helpful.
AWS_ACCESS_KEY_ID = os.environ.get('accessid')
AWS_SECRET_ACCESS_KEY = os.environ.get('accesskey')
AWS_STORAGE_BUCKET_NAME = os.environ.get('testbucket')
I followed this guide for saleor S3 integration: https://saleor.readthedocs.io/en/latest/deployment/s3.html
Now here is the situation I have created the bucket and have AWS_ACCESS_KEY_ID
,AWS_SECRET_ACCESS_KEY
and AWS_STORAGE_BUCKET_NAME
Can someone guide me from here how to serve media files on S3 for saleor