An open API service indexing awesome lists of open source software.

https://github.com/d3cryptofc/mines-gaming

🇺🇸 A simple mines game, but a little bit different. 🎮
https://github.com/d3cryptofc/mines-gaming

css docker flask game gunicorn html javascript mines poetry python

Last synced: 2 months ago
JSON representation

🇺🇸 A simple mines game, but a little bit different. 🎮

Awesome Lists containing this project

README

        


💎 Mines Gaming 💎


A simple mines game, but a little bit different.











---

### 📚 Objective & Rules

1. You must accumulate points.
2. Be careful with greed in each match.
3. When clicking on a bomb, the points earned will be removed and you will still lose the same amount of the match.

---

### 🎮 How to run it?

- Poetry (without docker)

```bash
poetry install
poetry run gunicorn app:app -k gevent
```

- Docker

From public registry:

```
docker run -p 8000:8000 d3cryptofc/mines:1.0.0
```

Build the image yourself (advanced users):
```
docker build -t d3cryptofc/mines .
docker run -p 8000:8000 d3cryptofc/mines
```