multiplayer minesweeper app made with Flask, React and Socket.IO
https://github.com/Nadav42/agile-course-minesweeper
https://hub.docker.com/r/nadav42/minesweeper
-
install all dependencies
pip install -r requirements.txt -
run the app
python flask_app.py
python -m unittest discover ./tests
or
pip install pytest && pytest ./tests
Build Locally:
docker build -t minesweeper .
docker run -it --rm -p 5000:5000 minesweeper
Download image from dockerhub.com:
docker run -it --rm -p 5000:5000 nadav42/minesweeper
Run with docker-compose
docker-compose -f ".../docker-compose-minesweeper-prod.yml" up -d