Faststrap Doctor CLI
Use faststrap doctor to detect common setup and integration issues.
This command is intended to catch common "why is this not working?" integration problems before deployment.
Install / entrypoint
After installing a version that includes CLI scripts:
Scan custom path
Checks currently included
- Import source shadowing (site-packages vs local source confusion).
- Potential
/staticmount conflicts withmount_assets(...). toast_response(...)usage withoutToastContainer(...).- Basic preset misuse detection patterns.
Why this helps
- Faster onboarding for new contributors.
- Reduced support/debug time for avoidable setup mistakes.
- Better consistency between local and production behavior.
Exit behavior
- Exit
0: no issues found. - Exit
1: one or more warnings detected.
Typical workflow
- Run
faststrap doctor. - Fix reported issues.
- Re-run until status is clean.
Typical fix examples
- If you get a static conflict warning, move custom assets from
/staticto/assets. - If you get missing toast container warning, add
ToastContainer(...)to your base layout.