Skip to content

Gamify-IT/lecturer-interface

Repository files navigation

Lecturer-Interface

grafik An easy-to-use interface that lecturers can use to configure the areas of the overworld and the shown minigames.

Development

Beginning of additions (that work)

Getting started

Clone the repository

git clone https://github.com/Gamify-IT/lecturer-interface.git

Install the dependencies

npm install

Compile and Hot-Reload for Development

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.

Build your local changes as a docker container

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