INTEGRATION COMPLETE: - Initialize git repository in website directory with all project files - Add website as git submodule in modules/website/ following existing structure - Update .gitmodules to include website submodule configuration - Update build-and-push.sh to reference modules/website instead of website - Fix website build configuration for Docker compatibility SUBMODULE STRUCTURE: modules/ ├── bzzz/ # P2P Agent Coordination ├── slurp/ # Context Management (HCFS) ├── whoosh/ # Orchestration Platform └── website/ # Marketing Website (NEW) BUILD SYSTEM INTEGRATION: - ./chorus.sh build works with submodule structure - ./build-and-push.sh website builds from modules/website - Docker stack deploy continues to work with existing configuration - All existing CHORUS infrastructure maintains compatibility 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
474 B
Plaintext
13 lines
474 B
Plaintext
[submodule "modules/bzzz"]
|
|
path = modules/bzzz
|
|
url = http://tony:silverfrond[1392]@ironwood:3000/tony/bzzz.git
|
|
[submodule "modules/slurp"]
|
|
path = modules/slurp
|
|
url = http://tony:silverfrond[1392]@ironwood:3000/tony/HCFS.git
|
|
[submodule "modules/whoosh"]
|
|
path = modules/whoosh
|
|
url = http://tony:silverfrond[1392]@ironwood:3000/tony/hive.git
|
|
[submodule "modules/website"]
|
|
path = modules/website
|
|
url = http://tony:silverfrond[1392]@ironwood:3000/tony/chorus-website.git
|