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.
This pull request introduces a new "Scratch Status Monitor" app built with Hono, TypeScript, and Cloudflare Workers. It adds a complete backend and frontend structure for monitoring service statuses, including configuration, admin tools, periodic checks (cron), and a web UI. The changes also include development scripts, documentation, and project setup files.
Core Application Implementation
app/src/index.tsx, providing routes for status checks, history, configuration, admin UI, and cron triggers, all using the Hono framework. Includes caching and edge compatibility for Cloudflare Workers.monitor.jsfor rendering service status charts and cards, andmonitor.cssfor responsive styling. [1] [2]Project Setup & Tooling
package.jsonspecifying dependencies (hono,wrangler, etc.) and scripts for development, deployment, and Cloudflare type generation..gitignorefor build artifacts, dependencies, environment files, logs, and IDE/project files.websiteinstead of separatebackendandfrontendterminals.Documentation & Developer Resources
README.mdanddev.mdwith instructions for installation, development, deployment, and architecture overview. [1] [2].github/instructions/hono.instructions.md,.github/instructions/website.instructions.md, and a resource table in.github/copilot-instructions.md. [1] [2] [3]Development Utilities
local-cron.ps1) and Node.js (poller.js) to simulate periodic status checks during development. [1] [2]These changes collectively establish the foundation for a Cloudflare Worker-based service status monitor with a modern web UI, admin tools, and robust developer experience.