mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-26 04:25:46 +02:00
* fix(docker): remove COPY for non-existent tsconfig/node_modules The @multica/tsconfig package has zero dependencies, so pnpm install never creates a node_modules directory for it. The COPY --from=deps instruction fails with "not found" during docker compose build. Closes #658 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix(docker): add dotenv as explicit dependency for web app next.config.ts imports dotenv to load .env for REMOTE_API_URL, but dotenv was never declared as a dependency. It worked locally as a hoisted transitive dep but fails in Docker's stricter module resolution. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * docs: fix daemon setup instructions for local Docker deployments The daemon setup section in SELF_HOSTING.md had production URLs as the active example and local Docker URLs commented out. Since this is a self-hosting guide, local Docker should be the primary example. Key changes: - Make local Docker URLs the default in daemon setup examples - Add explicit warning that CLI defaults to hosted service - Add 'multica config set' instructions for persistent setup - Add link from Quick Start to daemon setup section - Clarify that daemon runs on host machine, not inside Docker - Update CLI_AND_DAEMON.md self-hosted section similarly Closes #660 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>