refactor(services): rename Go services, remove -go suffix

mana-search-go → mana-search
mana-notify-go → mana-notify
mana-crawler-go → mana-crawler
mana-api-gateway-go → mana-api-gateway

Legacy NestJS versions are deleted, suffix no longer needed.
Updated all references in docker-compose, CLAUDE.md, package.json,
Forgejo workflows, and service package.json files.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-03-28 10:18:40 +01:00
parent 79080d6654
commit 7e931b1c6d
90 changed files with 41 additions and 38 deletions

View file

@ -0,0 +1,11 @@
{
"name": "mana-api-gateway",
"version": "1.0.0",
"private": true,
"description": "Go API Gateway replacing NestJS mana-api-gateway",
"scripts": {
"build": "go build -ldflags=\"-s -w\" -o dist/mana-api-gateway ./cmd/server",
"dev": "go run ./cmd/server",
"test": "go test ./..."
}
}