Files
medusa-store/www/apps/resources/app/medusa-cli/page.mdx
Shahed Nasser 009d00f27d docs: redesign table of content (#12647)
* implement toc

* added to projects

* fixes and adapt for references

* added product frontmatter

* remove action menu from 404 pages
2025-05-30 16:55:36 +03:00

42 lines
691 B
Plaintext

---
generate_toc: true
---
import { Table, Prerequisites, ChildDocs } from "docs-ui"
export const metadata = {
title: `Medusa CLI Reference`,
}
# {metadata.title}
The Medusa CLI tool provides commands that facilitate your development.
<Prerequisites items={[
{
text: "Node.js v20+",
link: "https://nodejs.org/en/download"
},
{
text: "Git CLI tool",
link: "https://git-scm.com/downloads"
},
{
text: "PostgreSQL",
link: "https://www.postgresql.org/download/"
}
]} />
## Usage
In your Medusa application's directory, you can use the Medusa CLI tool using NPX.
For example:
```bash
npx medusa --help
```
---
<ChildDocs hideItems={["Overview"]} />