Files
medusa-store/www/apps/resources/app/architectural-modules/file/page.mdx
Shahed Nasser 65be42c818 docs: add integrations page (#7421)
* add integrations page

* update payment provider docs

* use stripe icon
2024-05-28 13:25:03 +03:00

28 lines
879 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { ChildDocs } from "docs-ui"
export const metadata = {
title: `File Provider Modules`,
}
# {metadata.title}
A File Module exposes the functionalities to upload assets, such as product images, to the Medusa application.
---
## What is a File Provider Module?
A file provider module implements the logic of handling uploads and downloads. The File Module must have one file provider module configured.
By default, Medusa uses the Local File Module. This module uploads files to the `uploads` directory of your Medusa application.
This is useful for development. However, for production, its highly recommended to use other File Modules, such as the S3 Module.
<ChildDocs type="item" hideItems={["Guides"]} onlyTopLevel={true} />
---
## Create a File Provider Module
To create a file provider module, refer to [this guide](/references/file-provider-module).