refactor: rename remaining c4 references to games
All checks were successful
CI / Deploy / test (pull_request) Successful in 16s
CI / Deploy / lint (pull_request) Successful in 25s
CI / Deploy / deploy (pull_request) Has been skipped

Update binary name, DB path, session cookie, deploy scripts, systemd
service, Docker config, CI workflow, and .dockerignore. Remove stale
Claude command and settings files.
This commit is contained in:
Ryan Hamamura
2026-03-02 21:16:12 -10:00
parent c6885a069b
commit 6d43bdea16
14 changed files with 64 additions and 109 deletions

View File

@@ -27,9 +27,9 @@ tasks:
- "assets/css/output.css"
build:
desc: Production build to bin/c4
desc: Production build to bin/games
cmds:
- go build -o bin/c4 .
- go build -o bin/games .
deps:
- build:templ
- build:styles
@@ -49,8 +49,8 @@ tasks:
cmds:
- |
go tool air \
-build.cmd "go build -tags=dev -o tmp/bin/c4 ." \
-build.bin "tmp/bin/c4" \
-build.cmd "go build -tags=dev -o tmp/bin/games ." \
-build.bin "tmp/bin/games" \
-build.exclude_dir "data,bin,tmp,deploy" \
-build.include_ext "go,templ" \
-misc.clean_on_exit "true"
@@ -75,7 +75,7 @@ tasks:
run:
desc: Build and run the server
cmds:
- ./bin/c4
- ./bin/games
deps:
- build