chore: rename super-multica references to multica

The project was previously called "super-multica" but has been renamed
to "multica". Update all remaining references in docker-compose, goreleaser,
README, and local development docs.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jiayuan 2026-03-25 21:01:39 +08:00
parent ade113975d
commit 1988c45fb0
4 changed files with 11 additions and 11 deletions

View file

@ -45,7 +45,7 @@ brews:
branch: main branch: main
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}" token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
directory: Formula directory: Formula
homepage: "https://github.com/multica-ai/super-multica" homepage: "https://github.com/multica-ai/multica"
description: "Multica CLI — local agent runtime and management tool for the Multica platform" description: "Multica CLI — local agent runtime and management tool for the Multica platform"
license: "MIT" license: "MIT"
install: | install: |

View file

@ -72,11 +72,11 @@ make worktree-env
That generates values like: That generates values like:
```bash ```bash
POSTGRES_DB=multica_super_multica_702 POSTGRES_DB=multica_my_feature_702
POSTGRES_PORT=5432 POSTGRES_PORT=5432
PORT=18782 PORT=18782
FRONTEND_PORT=13702 FRONTEND_PORT=13702
DATABASE_URL=postgres://multica:multica@localhost:5432/multica_super_multica_702?sslmode=disable DATABASE_URL=postgres://multica:multica@localhost:5432/multica_my_feature_702?sslmode=disable
``` ```
Notes: Notes:
@ -169,8 +169,8 @@ make check-main
Use a worktree when you want isolated data and separate app ports. Use a worktree when you want isolated data and separate app ports.
```bash ```bash
git worktree add ../super-multica-feature -b feat/my-change main git worktree add ../multica-feature -b feat/my-change main
cd ../super-multica-feature cd ../multica-feature
make worktree-env make worktree-env
make setup-worktree make setup-worktree
make start-worktree make start-worktree
@ -195,7 +195,7 @@ Example:
- backend: `8080` - backend: `8080`
- frontend: `3000` - frontend: `3000`
- worktree checkout - worktree checkout
- database: `multica_super_multica_702` - database: `multica_my_feature_702`
- backend: generated worktree port such as `18782` - backend: generated worktree port such as `18782`
- frontend: generated worktree port such as `13702` - frontend: generated worktree port such as `13702`
@ -442,8 +442,8 @@ make start-main
### Feature Worktree ### Feature Worktree
```bash ```bash
git worktree add ../super-multica-feature -b feat/my-change main git worktree add ../multica-feature -b feat/my-change main
cd ../super-multica-feature cd ../multica-feature
make worktree-env make worktree-env
make setup-worktree make setup-worktree
make start-worktree make start-worktree
@ -452,7 +452,7 @@ make start-worktree
### Return to a Previously Configured Worktree ### Return to a Previously Configured Worktree
```bash ```bash
cd ../super-multica-feature cd ../multica-feature
make start-worktree make start-worktree
``` ```

View file

@ -40,7 +40,7 @@ make start-worktree
Every checkout shares the same PostgreSQL container on `localhost:5432`. Isolation now happens at the database level: Every checkout shares the same PostgreSQL container on `localhost:5432`. Isolation now happens at the database level:
- `.env` typically uses `POSTGRES_DB=multica` - `.env` typically uses `POSTGRES_DB=multica`
- each `.env.worktree` gets its own `POSTGRES_DB`, such as `multica_super_multica_702` - each `.env.worktree` gets its own `POSTGRES_DB`, such as `multica_my_feature_702`
- backend/frontend ports still stay unique per worktree - backend/frontend ports still stay unique per worktree
That keeps one Docker container and one volume, while still isolating schema and data per worktree. That keeps one Docker container and one volume, while still isolating schema and data per worktree.

View file

@ -1,4 +1,4 @@
name: super_multica name: multica
services: services:
postgres: postgres: