@lodashventure/medusa-quotation
v1.5.26
Published
A starter for Medusa plugins.
Downloads
2,292
Maintainers
Readme
Medusa v2 Example: Quote Management
This directory holds the code for the Quote Management Guide.
You can either:
- install and use it as a Medusa application;
- or copy its source files into an existing Medusa application.
Prerequisites
Installation
Copy into Existing Medusa Application
If you have an existing Medusa application, copy the following directories and files into your project:
src/adminsrc/apisrc/linkssrc/modules/quotessrc/workflows
Then, add the Quote Module to medusa-config.ts:
module.exports = defineConfig({
// ...
modules: [
{
resolve: "./src/modules/quote",
}
],
})install dependencies
yarn add lucide-reactFinally, run migrations:
npx medusa db:migrateMore Resources
- Medusa Documentatin
- OpenAPI Spec file: Can be imported into tools like Postman to view and send requests to this project's API routes.
