Crosswordpuzzle

This is a simple crosswordpuzzle. With given questions and answers it automatically generates a crosswordpuzzle.


Getting started

Clone the repository

git clone https://github.com/Gamify-IT/crosswordpuzzle.git

Install the dependencies

npm install

Compile and Hot-Reload for Development

npm run dev

Build

Build the Docker-Container

docker build -t crosswordpuzzle-dev

And run it at port 8000 with

docker run -d -p 8000:80 --name crosswordpuzzle-dev crosswordpuzzle-dev

To monitor, stop and remove the container you can use the following commands:

docker ps -a -f name=crosswordpuzzle-dev
docker stop crosswordpuzzle-dev
docker rm crosswordpuzzle-dev