This is a traditional memory game where you have to find matching all pairs.
This repository contains the frontend for the Memory minigame.
- User documentation for the minigame can be found here
- For the backend, see the Gamify-IT/memory-backend repository
- The installation manual and setup instructions can be found here.
Beginning of additions (that work)
Clone the repository
git clone https://github.com/Gamify-IT/memory.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 remove the container you can use the following command:
docker rm memory
-
Background sound https://zvukipro.com/music/651-fonovaja-muzyka-dlja-igr-i-drugih-situacij-zacikleno.html
-
Click https://pixabay.com/de/sound-effects/interface-button-154180/
-
Success notification https://pixabay.com/de/sound-effects/bonus-143026/
-
Swipe https://pixabay.com/de/sound-effects/swing-whoosh-5-198498/
-
Wrong answer notification https://pixabay.com/de/sound-effects/error-126627/
-
Final triumph sound https://pixabay.com/sound-effects/success-fanfare-trumpets-6185/
End of additions