Codenames board game
Find a file
joshii 20f79830ba
Some checks failed
Build horsepaste / build (push) Failing after 15s
Fix: use docker-ce-cli instead of docker.io
2026-03-15 18:52:27 +01:00
.forgejo/workflows Fix: use docker-ce-cli instead of docker.io 2026-03-15 18:52:27 +01:00
assets Initial commit 2026-03-15 13:36:37 +01:00
cmd/horsepaste Initial commit 2026-03-15 13:36:37 +01:00
frontend Initial commit 2026-03-15 13:36:37 +01:00
scripts Initial commit 2026-03-15 13:36:37 +01:00
.gitignore Initial commit 2026-03-15 13:36:37 +01:00
.travis.yml Initial commit 2026-03-15 13:36:37 +01:00
Dockerfile Initial commit 2026-03-15 13:36:37 +01:00
frontend.go Initial commit 2026-03-15 13:36:37 +01:00
game.go Initial commit 2026-03-15 13:36:37 +01:00
game_test.go Initial commit 2026-03-15 13:36:37 +01:00
go.mod Initial commit 2026-03-15 13:36:37 +01:00
go.sum Initial commit 2026-03-15 13:36:37 +01:00
README.md Initial commit 2026-03-15 13:36:37 +01:00
screenshot.png Initial commit 2026-03-15 13:36:37 +01:00
server.go Initial commit 2026-03-15 13:36:37 +01:00
store.go Initial commit 2026-03-15 13:36:37 +01:00
store_test.go Initial commit 2026-03-15 13:36:37 +01:00
wordset.go Initial commit 2026-03-15 13:36:37 +01:00
wordset_test.go Initial commit 2026-03-15 13:36:37 +01:00

horsepaste

GoDoc

Horsepaste is a word-guessing game. Generated boards are shareable and sync. The board can be viewed either as a clue giver or a word guesser.

A hosted version of the app is available at www.horsepaste.com.

Clue giver view of board

Building

The app requires a Go toolchain, node.js and parcel to build. Once you have those setup, build the application Go binary with:

go install github.com/jbowens/horsepaste/cmd/horsepaste

Then from the frontend directory, install the node modules:

npm install

and start the app (listens to changes)

npm start

or build the app

npm run build

Docker

Alternatively, the repository includes a Dockerfile for building a docker image of this app.

docker build . -t horsepaste:latest

The following command will launch the docker image:

docker run --name horsepaste_server --rm -p 9091:9091 -d horsepaste

The following command will kill the docker instance:

docker stop horsepaste_server