From fccedf229a5ab004e2110b5e9f921cd657574547 Mon Sep 17 00:00:00 2001 From: tony Date: Sat, 2 Aug 2025 14:02:12 +1000 Subject: [PATCH] Update documentation for website submodule integration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add website to project structure documentation - Include website build commands in management reference - Document new submodule in architecture overview - Update .gitmodules with branch specification for better submodule management 🤖 Generated with Claude Code Co-Authored-By: Claude --- .gitmodules | 1 + README.md | 8 +++++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 7f28192..5155a0a 100644 --- a/.gitmodules +++ b/.gitmodules @@ -10,3 +10,4 @@ [submodule "modules/website"] path = modules/website url = http://tony:silverfrond[1392]@ironwood:3000/tony/chorus-website.git + branch = main diff --git a/README.md b/README.md index 73e864d..863b00c 100644 --- a/README.md +++ b/README.md @@ -105,6 +105,11 @@ The `./chorus.sh` script provides unified management: ./chorus.sh build # Build and push all images to registry ./chorus.sh pull # Pull latest images from registry +# Individual Component Builds +./build-and-push.sh website # Build and push website only +./build-and-push.sh whoosh-backend # Build and push WHOOSH backend only +./build-and-push.sh bzzz # Build and push BZZZ coordinator only + # Production Deployment ./chorus.sh deploy # Deploy to Docker Swarm (production) ./chorus.sh undeploy # Remove from Docker Swarm @@ -151,7 +156,8 @@ chorus.services/ └── 🧩 modules/ # Git submodules ├── whoosh/ # Orchestration platform ├── bzzz/ # P2P coordination - └── slurp/ # Context management (HCFS) + ├── slurp/ # Context management (HCFS) + └── website/ # Marketing website (Next.js) ``` ## ⚙️ Configuration