You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: correct CI workflow reference in apps/docs/AGENTS.md
The reference to .github/workflows/docusaurus-build.yml was incorrect as
this workflow doesn't exist in the monorepo. Updated to reflect that CI
injects environment variables via Vercel configuration.
Copy file name to clipboardExpand all lines: apps/docs/AGENTS.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ This file provides guidance to agents when working with code in this repository.
4
4
5
5
Non-obvious, project-specific rules:
6
6
7
-
- Start/build preload dotenv; analytics plugin is enabled only when POSTHOG_API_KEY is set. Use .env based on [.env.example](.env.example). CI injects it in [.github/workflows/docusaurus-build.yml](.github/workflows/docusaurus-build.yml). See [package.json](package.json) and [docusaurus.config.ts](docusaurus.config.ts).
7
+
- Start/build preload dotenv; analytics plugin is enabled only when POSTHOG_API_KEY is set. Use .env based on [.env.example](.env.example). CI injects it via Vercel environment variables (see PR description for deployment setup). See [package.json](package.json) and [docusaurus.config.ts](docusaurus.config.ts).
8
8
- Use Node 20 locally to match CI; engines allow >=18 but CI runs 20.
9
9
- Linting targets only /src; docs content is not linted. Use "pnpm run lint:unused" to enforce unused import removal. Type checking uses "tsc" only (no emit); [tsconfig.json](tsconfig.json) is editor-focused.
10
10
- When moving/renaming docs, you must add an explicit redirect in [docusaurus.config.ts](docusaurus.config.ts) under plugin-client-redirects. This is required by [.roorules](.roorules).
0 commit comments