A simple single-choice question game.
Beginning of additions (that work)
Clone the repository
git clone https://github.com/Gamify-IT/towercrush.gitInstall the dependencies
npm installTo run the project locally with your IDE feature and have all necessary dependencies running, start the dependencies via docker:
docker compose -f docker-compose-dev.yaml upThen start the frontend with:
npm run serveYou can now access the game at localhost.
To build and run your local changes as a docker container use:
docker compose up --buildYou can remove the container with:
docker compose downTo monitor the container you can use the following command:
docker ps -a -f name=towercrushTo stop the container you can use the following command:
docker stop towercrushTo remove the container you can use the following command:
docker rm towercrush-
Background music https://pixabay.com/de/music/elektronisch-going-on-foot-133469/
-
Click https://pixabay.com/de/sound-effects/interface-button-154180/
-
Good result https://pixabay.com/de/sound-effects/goodresult-82807/
-
Put vote sound https://pixabay.com/de/sound-effects/button-198922/
End of additions