Skip to content

Install Glade and Run the First Local Check

Guided help

Install Glade, prove the binary, and run the first local check from a terminal.

  • Run `glade doctor`.
  • Initialize an SFDX project.
  • Read the first `glade check` result.

Before you start

  • You have a terminal open at the project root.
  • You have an SFDX project open at the project root.
  • Your shell can find glade on PATH.

Steps

1. Prove the install

bash
glade version
glade doctor

Expected: glade doctor ends with Ready.

Terminal showing glade doctor ready output

2. Initialize and check the project

bash
test -f glade.yml || glade init --project . --yes
glade config validate --project .
glade check --project .

Expected: glade check exits 0 for clean source or exits 1 with file and line diagnostics.

Terminal showing glade check output

Common wrong turn

glade: command not found means the install directory is not on PATH. Add ~/.local/bin to PATH, restart the terminal, and run glade doctor again.

Next

Glade is local-first Apex tooling.