Add page whitelist instructions to README for faster docs app dev builds#6313
Merged
carlosabadia merged 1 commit intomainfrom Apr 9, 2026
Merged
Add page whitelist instructions to README for faster docs app dev builds#6313carlosabadia merged 1 commit intomainfrom
carlosabadia merged 1 commit intomainfrom
Conversation
Alek99
approved these changes
Apr 9, 2026
Contributor
Greptile SummaryThis PR adds a "Page Whitelist (Faster Dev Builds)" section to Confidence Score: 5/5Safe to merge — documentation-only change with no code modifications. All documented rules and behaviors were verified against the actual whitelist.py implementation and are accurate. No code is changed and no P1/P0 findings exist. No files require special attention.
|
| Filename | Overview |
|---|---|
| docs/app/README.md | Adds a "Page Whitelist (Faster Dev Builds)" section that accurately documents the whitelist.py feature, with correct rules and examples matching the actual implementation. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[Dev server starts] --> B{WHITELISTED_PAGES empty?}
B -- Yes --> C[Build all pages]
B -- No --> D{path == '/'}
D -- Yes --> E[Always build root]
D -- No --> F{Only entry is '/'}
F -- Yes --> G[Skip page]
F -- No --> H{path.startswith whitelisted_path?}
H -- Yes --> I[Build page]
H -- No --> G
Reviews (1): Last reviewed commit: "Add page whitelist instructions to READM..." | Re-trigger Greptile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.