Files
myeasycms-v2/apps/web/content/documentation/getting-started/installing-dependencies.mdoc
Giancarlo Buomprisco 9615d1a4bb Documentation Updates (#79)
* Docs: Added Shadcn sidebar; added algorithm to automatically infer parents without needing to specify it.
* Extracted Markdoc compilation in a separate file
* Site Navigation: simplify nav by removing the border
* Docs Navigation: added TOC; improved layout on mobile
2024-10-30 20:49:44 +08:00

21 lines
466 B
Plaintext

---
title: "Installing Dependencies"
description: "Learn how to install dependencies for your project."
publishedAt: 2024-04-11
order: 0
status: "published"
---
To install dependencies in your project, please install `pnpm` by running the following command:
```bash
npm install -g pnpm
```
Next, navigate to your project directory and run the following command:
```bash
pnpm install
```
This will install all the dependencies listed in your `package.json` file.