Production hardening: security, UI, docs, logging, deployment#1
Merged
Conversation
…docs, 404 - Remove localhost contamination from startup logging - Add security headers (X-Content-Type-Options, X-Frame-Options, XSS, Referrer-Policy, Permissions-Policy, HSTS) - Add env-driven CORS configuration (ALLOWED_ORIGINS) - Rebuild landing page with navigation, features grid, ecosystem links - Add /docs route with full documentation (config, architecture, API, deployment, troubleshooting) - Add /services route with Heady ecosystem service directory - Add styled 404 handler - Replace console.log with structured logging (JSON in production) - Add graceful SIGTERM/SIGINT shutdown for container orchestrators - Fix default port mismatch (3000 -> 8080) - Dockerfile: multi-stage build, HEALTHCHECK instruction - CI: add PR trigger and route verification step - README: config table, routes, architecture, deployment, ecosystem, troubleshooting Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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.
Summary
ALLOWED_ORIGINSreplaces open-by-default behavior/docs(full documentation with config, architecture, API, deployment, troubleshooting),/services(ecosystem directory), styled 404 handlerTest plan
npm testpassesGET /healthreturns 200 with JSON statusGET /returns full landing page with nav, features, ecosystemGET /docsreturns documentation pageGET /servicesreturns ecosystem service directoryGET /nonexistentreturns 404 styled page🤖 Generated with Claude Code