A simple single-choice question game.
Beginning of additions (that work)
Clone the repository
git clone https://github.com/Gamify-IT/towercrush.git
Install the dependencies
npm install
To 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 up
Then start the frontend with:
npm run serve
You can now access the game at localhost.
To build and run your local changes as a docker container use:
docker compose up --build
You can remove the container with:
docker compose down
To monitor the container you can use the following command:
docker ps -a -f name=towercrush
To stop the container you can use the following command:
docker stop towercrush
To 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