Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion tools/conda-nodejs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ This guide sets up [Miniconda](https://www.anaconda.com/docs/getting-started/min
</Step>
<Step title="Run the installer">
```bash
# Apple Silicon:
bash Miniconda3-latest-MacOSX-arm64.sh

# Intel:
bash Miniconda3-latest-MacOSX-x86_64.sh
```

Accept the license, accept the default install location (`~/miniconda3`), and answer **yes** when asked whether to update your shell profile.
Expand Down Expand Up @@ -71,7 +75,10 @@ This guide sets up [Miniconda](https://www.anaconda.com/docs/getting-started/min
</Step>
<Step title="Clean up the installer">
```bash
# Remove whichever installer you downloaded above.
rm ~/Miniconda3-latest-MacOSX-arm64.sh
# or
rm ~/Miniconda3-latest-MacOSX-x86_64.sh
```
</Step>
</Steps>
Expand Down Expand Up @@ -148,11 +155,13 @@ conda env create -f environment.yml
</Step>
<Step title="Every time you work on docs">
```bash
cd ~/repos/docs
cd /path/to/your/docs-repo
conda activate docs-mintlify
mint dev
```

Replace `/path/to/your/docs-repo` with the path where you cloned this repository. Run `mint dev` from the directory that contains `docs.json`.

The preview runs at [http://localhost:3000](http://localhost:3000).
</Step>
</Steps>
Expand Down