Gitea renamed from gitea.d-ma.be to git.d-ma.be (infra ADR-0004). The template-go-web template repo has module gitea.d-ma.be/mathias/hostexecutor — this is a template placeholder that should be updated so new projects scaffolded from it start with the correct hostname.
go mod edit -module git.d-ma.be/mathias/hostexecutor
find . -name '*.go'| xargs sed -i 's|gitea.d-ma.be/mathias/hostexecutor|git.d-ma.be/mathias/hostexecutor|g'
Note: also check if the template create_project_from_template tooling substitutes __MODULE_PATH__ — if so, the template README or scaffold config may also reference gitea.d-ma.be.
Done when
go.mod module line reads git.d-ma.be/mathias/hostexecutor
No remaining gitea.d-ma.be refs in template files
## Background
Gitea renamed from `gitea.d-ma.be` to `git.d-ma.be` (infra ADR-0004). The `template-go-web` template repo has `module gitea.d-ma.be/mathias/hostexecutor` — this is a template placeholder that should be updated so new projects scaffolded from it start with the correct hostname.
## Scope
- `go.mod` — `module gitea.d-ma.be/mathias/hostexecutor` → `module git.d-ma.be/mathias/hostexecutor`
- Any `.go` files with the old path — bulk replace
```bash
go mod edit -module git.d-ma.be/mathias/hostexecutor
find . -name '*.go' | xargs sed -i 's|gitea.d-ma.be/mathias/hostexecutor|git.d-ma.be/mathias/hostexecutor|g'
```
Note: also check if the template `create_project_from_template` tooling substitutes `__MODULE_PATH__` — if so, the template README or scaffold config may also reference `gitea.d-ma.be`.
## Done when
- `go.mod` module line reads `git.d-ma.be/mathias/hostexecutor`
- No remaining `gitea.d-ma.be` refs in template files
Already fixed at source: go.mod on main uses __MODULE_PATH__ placeholder (not hardcoded gitea.d-ma.be), substituted correctly by new-project.sh (local-dev commit 1c87d9e uses git.d-ma.be). Confirmed via live scaffold test. Closing.
Already fixed at source: go.mod on main uses `__MODULE_PATH__` placeholder (not hardcoded `gitea.d-ma.be`), substituted correctly by `new-project.sh` (`local-dev` commit 1c87d9e uses `git.d-ma.be`). Confirmed via live scaffold test. Closing.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Background
Gitea renamed from
gitea.d-ma.betogit.d-ma.be(infra ADR-0004). Thetemplate-go-webtemplate repo hasmodule gitea.d-ma.be/mathias/hostexecutor— this is a template placeholder that should be updated so new projects scaffolded from it start with the correct hostname.Scope
go.mod—module gitea.d-ma.be/mathias/hostexecutor→module git.d-ma.be/mathias/hostexecutor.gofiles with the old path — bulk replaceNote: also check if the template
create_project_from_templatetooling substitutes__MODULE_PATH__— if so, the template README or scaffold config may also referencegitea.d-ma.be.Done when
go.modmodule line readsgit.d-ma.be/mathias/hostexecutorgitea.d-ma.berefs in template filesAlready fixed at source: go.mod on main uses
__MODULE_PATH__placeholder (not hardcodedgitea.d-ma.be), substituted correctly bynew-project.sh(local-devcommit 1c87d9e usesgit.d-ma.be). Confirmed via live scaffold test. Closing.