Overview: Transform the GitLab Issue Board and Merge Request workflow into a turn-based tactical strategy game. Two players ("The Architect" and "The Saboteur") battle for control of a repository board by moving "Units" (Issues) and playing "Cards" (MRs) against one another.
Commit 42: Added gravity-flip mechanic. Your turn to bridge the gap. gitlab 2 player games
extension:html + "2 player" + "websocket""p2p" + "multiplayer" + "pages"For many teams, the "2 player game" is a way to solve the boredom or anxiety of code reviews. By treating the codebase as a shared artifact that two players must protect, the dynamic shifts from "critique" to "collaboration." Create a GitLab account : The first step
.gitlab-ci.yml, deploys empty canvas.For the next three months, their GitLab contribution graph became a shared diary of late-night inspiration. They never spoke on the phone or swapped real names. They communicated through code comments and README updates. Commit 42: Added gravity-flip mechanic
# .gitlab-ci.yml excerpt
pages:
stage: deploy
script:
- cd frontend && npm run build
- mv dist ../public
artifacts:
paths:
- public
only:
- main