Skip to content

๐Ÿ‡บ๐Ÿ‡ธ A simple mines game, but a little bit different. ๐ŸŽฎ

License

Notifications You must be signed in to change notification settings

d3cryptofc/mines-gaming

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

10 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐Ÿ’Ž 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)

    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