on GitHub" data-tooltip-id=":Rblcldtb:">v2.6·
In this document, you'll learn about the expected files and directories in your module.
The index.ts
file in the root of your module's directory is the only required file. It must export the module's definition as explained in a previous chapter.
A module must have a main service. It's created in the service.ts
file at the root of your module directory as explained in a previous chapter.
The following directories are optional and their content are explained more in the following chapters:
models
: Holds the data models representing tables in the database.migrations
: Holds the migration files used to reflect changes on the database.loaders
: Holds the scripts to run on the Medusa application's start-up.