Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 753 Bytes

README.md

File metadata and controls

37 lines (24 loc) · 753 Bytes

0xWordle

This is a Blockchain twist of the popular word guessing game we all know and love. Made using React, Typescript, and Tailwind.

Try out the demo!

Build and run

To Run Locally:

Clone the repository and perform the following command line actions:

$> cd react-wordle
$> npm install
$> npm run start

To build/run docker container:

Development

$> docker build -t game:dev .
$> docker run -d -p 3000:3000 game:dev

Open http://localhost:3000 in browser.

Production

$> docker build --target=prod -t game:prod .
$> docker run -d -p 80:80 game:prod

Open http://localhost:3000 in browser.