Skip to content

jbowens/codenames

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

Bumps [json5](https://github.com/json5/json5) from 1.0.1 to 1.0.2.
- [Release notes](https://github.com/json5/json5/releases)
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
- [Commits](json5/json5@v1.0.1...v1.0.2)

---
updated-dependencies:
- dependency-name: json5
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9182b62

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

codenames

GoDoc

Codenames implements a web app for generating and displaying boards for the Codenames board game. Generated boards are shareable and will update as words are revealed. The board can be viewed either as a spymaster or an ordinary player.

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

Spymaster 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/codenames/cmd/codenames

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 codenames:latest

The following command will launch the docker image:

docker run --name codenames_server --rm -p 9091:9091 -d codenames

The following command will kill the docker instance:

docker stop codenames_server