-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.Land.Node.Sample
More file actions
26 lines (24 loc) · 1.21 KB
/
.env.Land.Node.Sample
File metadata and controls
26 lines (24 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# ===========================================================================
# Land Node.js runtime configuration. Read by:
# • Mountain's NodeResolver (Cocoon sidecar spawn)
# • Mountain's CocoonManagement (env forwarding to the spawned node)
#
# Copy this file to `.env.Land.Node` (gitignored) to pin a specific Node
# binary or override the shipped Node lookup. Naming convention: every
# Land env var is a single-word, action-oriented, PascalCase verb.
# ===========================================================================
# Explicit Node binary override ---------------------------------------------
# Absolute path to a `node` binary. If set and the file exists, Mountain
# uses it unconditionally and skips the version-manager / PATH chain.
# Leave unset to enable automatic resolution.
#
# Example:
# Pick=/opt/homebrew/opt/node@22/bin/node
# Pick=~/.nvm/versions/node/v22.11.0/bin/node
#Pick=
# Minimum Node major version required by Cocoon -----------------------------
# Cocoon's bundled extension host needs Node >= 20 for the stable
# AbortSignal and structuredClone surface. If resolved node reports
# lower, Mountain logs a warning but still spawns (VS Code extensions
# mostly still work).
Require=20