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

@ -8,15 +8,18 @@ on:
push:
branches: [main]
paths:
- 'services/mana-search-go/**'
- 'services/mana-notify-go/**'
- 'services/mana-crawler-go/**'
- 'services/mana-api-gateway-go/**'
- 'services/mana-search/**'
- 'services/mana-notify/**'
- 'services/mana-crawler/**'
- 'services/mana-api-gateway/**'
- 'services/mana-sync/**'
- 'services/mana-matrix-bot/**'
pull_request:
paths:
- 'services/mana-*-go/**'
- 'services/mana-search/**'
- 'services/mana-notify/**'
- 'services/mana-crawler/**'
- 'services/mana-api-gateway/**'
- 'services/mana-sync/**'
- 'services/mana-matrix-bot/**'
@ -26,10 +29,10 @@ jobs:
strategy:
matrix:
service:
- mana-search-go
- mana-notify-go
- mana-crawler-go
- mana-api-gateway-go
- mana-search
- mana-notify
- mana-crawler
- mana-api-gateway
- mana-sync
steps:
- uses: actions/checkout@v4
@ -56,13 +59,13 @@ jobs:
strategy:
matrix:
include:
- service: mana-search-go
- service: mana-search
image: mana-search
- service: mana-notify-go
- service: mana-notify
image: mana-notify
- service: mana-crawler-go
- service: mana-crawler
image: mana-crawler
- service: mana-api-gateway-go
- service: mana-api-gateway
image: mana-api-gateway
steps:
- uses: actions/checkout@v4