From 9c3e037a18f37e8f571987d1feefaea5f1e32377 Mon Sep 17 00:00:00 2001 From: Anthony Shew Date: Thu, 5 Dec 2024 04:50:19 -0700 Subject: [PATCH] docs: clarify default daemon usage --- docs/repo-docs/reference/run.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/repo-docs/reference/run.mdx b/docs/repo-docs/reference/run.mdx index 97118df968716..6f4178d65767d 100644 --- a/docs/repo-docs/reference/run.mdx +++ b/docs/repo-docs/reference/run.mdx @@ -410,7 +410,7 @@ turbo run dev --no-cache `turbo` can run a background process to pre-calculate values used for determining work that needs to be done. This standalone process (daemon) is an optimization, and not required for proper functioning of `turbo`. -Passing `--daemon` instructs `turbo` to use the standalone process, while `--no-daemon` instructs `turbo` to avoid using or creating the standalone process. +The default daemon usage is set for your repository using [the `daemon` field in `turbo.json`](/repo/docs/reference/configuration#daemon). Passing `--daemon` instructs `turbo` to use the standalone process, while `--no-daemon` instructs `turbo` to avoid using or creating the standalone process. The same behavior can also be set via the `TURBO_DAEMON=true` system variable.