This is a clone project of the popular word guessing game we all know and love now in Farsi!
Clone the repository and perform the following command line actions:
$> cd wordle-farsi
$> npm install
$> npm run start
$> docker build -t game .
$> docker run -d -p 3000:3000 game
Open http://localhost:3000 in browser.
- Update the
MAX_WORD_LENGTH
variable in src/constants/settings.ts to the desired length. - Update the
WORDS
array in src/constants/wordlist.ts to only include words of the new length. - Update the
VALID_GUESSES
array in src/constants/validGuesses.ts arrays to only include words of the new length.