Skip to content

Commit

Permalink
Merge pull request #16 from vokal/feat/s3-integration
Browse files Browse the repository at this point in the history
AWS S3 integration
  • Loading branch information
garciajg authored Apr 26, 2024
2 parents 0233ee6 + ba4ca58 commit 9fa97a7
Show file tree
Hide file tree
Showing 4 changed files with 5,623 additions and 2,767 deletions.
11 changes: 11 additions & 0 deletions medusa-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,17 @@ const plugins = [
},
},
},
{
resolve: 'medusa-file-s3',
options: {
s3_url: process.env.S3_URL,
bucket: process.env.S3_BUCKET,
region: process.env.S3_REGION,
access_key_id: process.env.S3_ACCESS_KEY_ID,
secret_access_key: process.env.S3_SECRET_ACCESS_KEY,
cache_control: process.env.S3_CACHE_CONTROL,
},
}
];

const modules = {
Expand Down
Loading

0 comments on commit 9fa97a7

Please sign in to comment.