Skip to content

cugdc/steg

Repository files navigation

Steg

A game of steganography.
CU Boulder Game Dev Club 2019/2020 collaborative project.
MIT licensed.

Follow progress on our Trello.

Build locally

Run these commands in your command prompt of choice.

Installs the dependencies the game needs (whenever the game is changed)

npm install

Builds the game

npm run watch

Then open index.html in your browser and start hacking.

./index.html

Create new branch

Adds a new branch to house your changes.

git checkout -b branchName

Commit and push changes

Check the files / lines you changed

git status
git diff

Create a local commit

git commit -m "Commit message"

Push local commit to master

git push origin branchName

Pre-reqs

  • An up-to-date version of Node
  • A brain 🧠!