You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Summary
Repository was renamed from `game-server-deploy` to `Hyveon` on GitHub.
This PR updates the visible brand and URL references throughout the
codebase to match.
**Updated:**
- README.md (title, docs URLs, repo tree label)
- Docusaurus site config (title, baseUrl, projectName, organizationName,
edit URLs, navbar, footer, copyright)
- Docs pages (intro, setup, architecture, guides, submodule wrapper
guide)
- App source (header `<h1>`, page docs hrefs, e2e brand assertions,
JSDoc repo refs)
- `setup.sh` bootstrap banner
- `scripts/` (init-parent banner, README, test fixtures)
- Design spec
(`docs/superpowers/specs/2026-05-10-electron-desktop-pivot-design.md`)
- Root `package.json#name` → `hyveon`
- `docs/package.json#name` → `hyveon-docs`
- `package-lock.json` (root name field, auto-regenerated)
**Intentionally NOT changed in this PR:**
- `@gsd/*` npm workspace scope — separate refactor; renaming touches
every TS import. The desktop pivot's Epic B already plans the
`@gsd/server` → `@gsd/desktop-main` migration; broader scope rename
should happen alongside.
- Terraform `project_name` default `"game-servers-poc"` — changing it
re-tags every AWS resource and invalidates Cost Explorer's existing
Project-tag activation. Needs a planned migration with a `terraform
plan` review.
- CLAUDE.md's reference to the existing AWS tag value.
**Issue bodies on GitHub:** 82 of 112 open issues had their bodies
updated to use `github.com/CoderCoco/Hyveon` URLs (handled out-of-band
via `gh issue edit`).
## Test plan
- [ ] `npm install` succeeds at the new root name
- [ ] `npm run app:dev` boots
- [ ] Browser shows "Hyveon" in the app header
- [ ] `cd docs && npm run start` renders the docs site with the new
title
- [ ] No broken internal links in docs
🤖 Generated with [Claude Code](https://claude.com/claude-code)
---------
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: README.md
+15-15Lines changed: 15 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
-
# Game Server Manager
1
+
# Hyveon
2
2
3
3
A cost-efficient multi-game dedicated server platform on **AWS Fargate** with a
4
-
local web UI and a fully serverless Discord bot. Servers only run — and only
5
-
cost money — while someone is playing.
4
+
local management UI and a fully serverless Discord bot. Servers only run — and
5
+
only cost money — while someone is playing.
6
6
7
-
> 📚 Full documentation lives at **[codercoco.github.io/game-server-deploy](https://codercoco.github.io/game-server-deploy/)**
7
+
> 📚 Full documentation lives at **[codercoco.github.io/Hyveon](https://codercoco.github.io/Hyveon/)**
8
8
> (built from [`docs/`](./docs) by GitHub Pages). The rest of this README is a
9
9
> quick tour; deep-dives, setup steps, and architecture diagrams are on the
10
10
> site.
@@ -31,22 +31,22 @@ cost money — while someone is playing.
31
31
32
32
## Documentation
33
33
34
-
The [docs site](https://codercoco.github.io/game-server-deploy/) is
34
+
The [docs site](https://codercoco.github.io/Hyveon/) is
35
35
organised around three roles. Pick the one that matches what you need to do.
36
36
37
37
| Guide | You are… |
38
38
|---|---|
39
-
|[**Setup guide**](https://codercoco.github.io/game-server-deploy/setup/)| Going from a blank AWS account to a running Fargate task. |
40
-
|[**User guide**](https://codercoco.github.io/game-server-deploy/guides/user/)| Driving an already-provisioned deployment — the dashboard, Discord commands, day-to-day ops. |
41
-
|[**Maintainer guide**](https://codercoco.github.io/game-server-deploy/guides/maintainer/)| Working on this codebase. |
42
-
|[**Private parent + submodule guide**](https://codercoco.github.io/game-server-deploy/guides/submodule/)| Wrapping this repo in a private repo that holds `terraform.tfvars` and tfstate. Includes an interactive scaffolder ([`scripts/init-parent.ts`](./scripts/init-parent.ts)) that generates the wrapper Makefile, tfvars, and `.env`. |
39
+
|[**Setup guide**](https://codercoco.github.io/Hyveon/setup/)| Going from a blank AWS account to a running Fargate task. |
40
+
|[**User guide**](https://codercoco.github.io/Hyveon/guides/user/)| Driving an already-provisioned deployment — the dashboard, Discord commands, day-to-day ops. |
41
+
|[**Maintainer guide**](https://codercoco.github.io/Hyveon/guides/maintainer/)| Working on this codebase. |
42
+
|[**Private parent + submodule guide**](https://codercoco.github.io/Hyveon/guides/submodule/)| Wrapping this repo in a private repo that holds `terraform.tfvars` and tfstate. Includes an interactive scaffolder ([`scripts/init-parent.ts`](./scripts/init-parent.ts)) that generates the wrapper Makefile, tfvars, and `.env`. |
43
43
44
44
Component deep-dives:
45
45
46
-
-[**Architecture**](https://codercoco.github.io/game-server-deploy/architecture/) — full diagram + `/server-start` sequence.
47
-
-[**Terraform**](https://codercoco.github.io/game-server-deploy/components/terraform/) — every `.tf` file, variables, outputs, gotchas.
0 commit comments