Category

Storage

Version

0.0.1

Last updated

Dec 21, 2022, 18:31:36 PMa year ago

medusa-file-supabase

Supabase Storage plugin for MedusaJS.

Usage

Create a Supabase Project and add a Public Storage Bucket.
Open the Storage Bucket and click on the "Settings" tab. Copy the "Project Ref" and "Service Key" and add them to your
Copy to clipboard
medusa-config.js
file.
module.exports = {
// ... other config
plugins: [
// ... other plugins
{
resolve: `medusa-file-supabase`,
options: {
project_ref: 'PROJECT_REF',
service_key: 'SERVICE_KEY',
bucket_name: 'BUCKET_NAME',
},
},
],
};

Build your own plugins

Develop your own plugins with our API to speed up your processes.

Make your plugin available via npm for it to be shared in our Plugin Library with the broader Medusa community.