content for the planttracer.com website
This repository includes an automated system that generates PNG screenshots of all web pages on every pull request. This helps reviewers visualize UI changes without running the site locally.
For contributors:
- Screenshots are automatically generated when you create/update a PR
- Look for the "📸 Page Screenshots" comment in your PR
- Download artifacts from the workflow summary
For developers:
- Run locally:
python3 render_pages.py - See SCREENSHOTS.md for detailed documentation
Run the local development server:
cd static
python3 ../pyserver.pyThe site will be available at http://localhost:9001
Generate page screenshots locally:
pip install playwright
playwright install chromium
python3 render_pages.pySee SCREENSHOTS.md for more details.