designed by Gustavo Luz
watch demo: Minesweeper-game
Guideline for launch:
- open GIT console on desktop or any directory of your PC, use
git clone https://github.com/Fpsska/Minesweeper-game.git - open cloned project directory with any code editor
- use
npm installin terminal console of code editor for download all dependencies - use
npm startallias in terminal console of code editor for run application
Guideline for launch with Docker:
- open GIT console on desktop or any directory of your PC, use
git clone https://github.com/Fpsska/Minesweeper-game.git - open cloned project directory with any code editor
- use
docker build . -t <image-name>for create docker-image - use
docker run -d --name <container-name> -p 3000:8080 <image-name>for start docker-container - use
docker run -d --name <container-name> --env-file <../file.env> -p 3000:8080 <image-name>for start with custom app config
Example of valid body of .env file
APP_PROFILE=develop
APP_HIDE_FEATURES=false
APP_VERSION=1.0.0