Files
medusa-store/www/apps/docs/content/experimental/index.md
Shahed Nasser cdc1da5df7 docs: added documentation pages for experimental features (#5671)
* docs: added documentation pages for experimental features

* fix content lint issues

* fixed lint errors

* added migration step

* added workflows introduction

* add installation guides

* added installation guides for modules + generated workflows reference

* added missing workflows reference link

* Added warning message for experimental features

* fix note
2023-11-27 16:49:12 +00:00

24 lines
877 B
Markdown

# Experimental Features
This section of the documentation includes features that are currently experimental.
As Medusa moves towards modularization, commerce concepts such as Products or Pricing will be moved to isolated commerce modules shipped as NPM packages. This significantly changes Medusa's architecture, making it more flexible for custom digital commerce applications.
## Enabling Experimental Features
:::danger[Production Warning]
All features guarded by the `medusa_v2` flag are not ready for production and will cause unexpected issues in your production server.
:::
Experimental Features are guarded in the Medusa backend by a feature flag.
To use them, [enable the `medusa_v2` feature flag](../development/feature-flags/toggle.md) in your backend.
Then, run migrations in your backend with the following command:
```bash
npx medusa migrations run
```