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. 🎮
- Host: GitHub
- URL: https://github.com/d3cryptofc/mines-gaming
- Owner: d3cryptofc
- License: mit
- Created: 2024-06-06T02:28:17.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-09-05T21:34:25.000Z (9 months ago)
- Last Synced: 2025-01-23T12:28:04.456Z (4 months ago)
- Topics: css, docker, flask, game, gunicorn, html, javascript, mines, poetry, python
- Language: JavaScript
- Homepage: https://hub.docker.com/r/d3cryptofc/mines
- Size: 78.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```