-
Descriptionpnpm run server:start nx: not found Why do it need nx to run ? TriliumNext Version0.98.1 What operating system are you using?Ubuntu What is your setup?Local (no sync) Operating System VersionUbuntu 22.04 Error logsNo response |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi @RRROS! I'm Dosu and I’m helping the Trilium team. You don't actually need Nx to run TriliumNext 0.98.1. The project uses pnpm's filtering system to orchestrate scripts, not Nx. The To fix this, make sure you have Node.js and pnpm installed, run To reply, just mention @dosu. How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
Hi @RRROS! I'm Dosu and I’m helping the Trilium team.
You don't actually need Nx to run TriliumNext 0.98.1. The project uses pnpm's filtering system to orchestrate scripts, not Nx. The
server:start
script runs thedev
script in the server workspace, which usescross-env
andtsx
—not Nx—under the hood. If you're seeing an "nx: not found" error, it's likely due to environmental misconfiguration or outdated documentation from other monorepo setups that use Nx, but TriliumNext does not require it for local development or running the server [source].To fix this, make sure you have Node.js and pnpm installed, run
pnpm install
in the project root, and then usepnpm run server:start
. No Nx insta…