A solitaire card playing game for one player, based on the version available at https://zankpatience.net.
There are 2 ways to setup with different prerequisites, easiest way should be docker:
- Install docker for your OS Docker
(the names russianbank
and russianbank-demo
are just examples and free to choose)
- Checkout the repository
- Create image
russianbank
:
# docker build -t russianbank .
- Create and run container
russianbank-demo
:
# docker run --name russianbank-demo -p 8080:80 -d russianbank
- Call http://127.0.0.1:8080/app/pages/game.html)
- Have fun playing the game
- Checkout the repository
- Install the external JS libraries listed in the
package.json
file, e.g. by running
# npm install
- Run
# webpack
to generate the bundeled JS file in the app/js/dist
directory
- Call the
index.html
file in the browser of your choice - Have fun playing with the code and the game