Files
medusa-store/www/apps/resources/app/medusa-cli/page.mdx
Shahed Nasser 70f2290a22 docs: added documentation for db commands (#8846)
* docs: added documentation for db commands

* fix lint errors
2024-08-29 10:46:00 +03:00

38 lines
663 B
Plaintext

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"]} />