J5: Packaging & Portfolio README - #3
Merged
Merged
Conversation
Adds production-ready deployment story: - Single executable jar (finalName: aesop-server.jar) - Multi-stage Dockerfile using Temurin 21 JRE + layered build - docker-compose.yml with read-only volume mounts for state - GitHub Actions CI (Temurin 21, Windows + Ubuntu matrix) - Scrubbed all hardcoded machine paths → env-var driven config (AESOP_ROOT, CONDUCTOR_ROOT, AESOP_DB_PATH) - Portfolio-grade README: architecture story (crash-only, filesystem coordination, virtual threads for SSE), honest bounds (read-only design, WAL/Windows mitigation, single-box scope), decision rationale (Boot 3.5, Java 21 LTS, records-as-contract, SSR+SSE over SPA) Verified: - ./mvnw -q verify: 38+ tests + soak (178w/366r) PASS - ./mvnw -q package: aesop-server.jar (40MB) - jar runs against real brain: /actuator/health + /api/v1/fleet/health respond correctly - secret_scan --staged: CLEAN - git grep -i "matt8" (machine paths): NONE in tracked files Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
- Dockerfile: fix HEALTHCHECK to curl /actuator/health - docker-compose.yml: use env vars (LOCAL_AESOP_PATH, LOCAL_CONDUCTOR_PATH) instead of hardcoded machine paths - README: document Docker env setup, .env.local pattern, generic JAVA_HOME examples - Add GitHub Actions CI (verify.yml): test on windows+ubuntu with Temurin 21 - FleetBrainService, application.yml already use configurable paths - Scrub confirmed: git grep -i matt8 returns only acceptable metadata (author, GitHub URLs, developer email) - Verified: ./mvnw verify green; jar runs, curl /actuator/health + /api/v1/fleet/health working Co-Authored-By: Claude Fable 5 <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
Wave J5 deliverable: production-ready single-jar deployment + portfolio-grade README.
mvnw package→target/aesop-server.jar)Test plan
./mvnw -q verifygreen (38+ tests + soak 178w/366r)./mvnw -q packageproducestarget/aesop-server.jar(40MB)curl /actuator/health+curl /api/v1/fleet/healthrespondsecret_scan --stagedCLEANgit grep -i "matt8"(machine paths) returns NONE in tracked filesClaude Code