An easy-to-use interface that lecturers can use to configure the areas of the overworld and the shown minigames.
Beginning of additions (that work)
Clone the repository
git clone https://github.com/Gamify-IT/lecturer-interface.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
End of additions