diff options
author | alifeee <alifeee.web@outlook.com> | 2025-02-12 10:50:06 +0000 |
---|---|---|
committer | alifeee <alifeee.web@outlook.com> | 2025-02-12 10:50:06 +0000 |
commit | b7e65e8ac592728290c7224c7310818c031d7b71 (patch) | |
tree | 4bf963ad2eec9b89cbcf96a40f993294520ba7a5 /docs/running-gathio/installation.md | |
parent | 861413f96b2ffada9a46f97f49651e14ecdacc4c (diff) |
add clarification notes
Diffstat (limited to 'docs/running-gathio/installation.md')
-rw-r--r-- | docs/running-gathio/installation.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/running-gathio/installation.md b/docs/running-gathio/installation.md index 2481bc3..6d8347a 100644 --- a/docs/running-gathio/installation.md +++ b/docs/running-gathio/installation.md @@ -26,6 +26,7 @@ We'll need to install [`pnpm`](https://pnpm.io/) for this. It should be installe export PNPM_HOME="/usr/.pnpm" curl -fsSL https://get.pnpm.io/install.sh | sh - sudo ln -s /usr/.pnpm/pnpm /usr/bin/pnpm +# you may also have to link /usr/bin/node or /usr/bin/nodejs to your local copy of node ``` `pnpm` installation instructions for [other systems](https://pnpm.io/installation) are available. @@ -35,6 +36,8 @@ Now, we'll install the dependencies: ```bash cd gathio pnpm install +# as "checkJs" is set to "true" in "tsconfig.json", this fails because of type-checking +# however, it builds the output folder "dist", so we can ignore the errors and carry on pnpm build ``` |