Skip to content

A German-language clone of the popular game Wordle made using React, Typescript, and Tailwind

License

Notifications You must be signed in to change notification settings

LennardSchwarz/poerdl

 
 

Repository files navigation

Poerdl

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

Try out the demo on pennard.de!

Build and run

To Run Locally:

Clone the repository and perform the following command line actions:

$> npm ci
$> npm run dev

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 in browser.

Projects built using this repo

Other languages

Fun themes

Math, Acronyms, Science, Tech, and more

Want to add one to the list? Just make a pull request or let us know via a comment here

FAQ

How can I change the length of a guess?

How can I create a version in another language?

How can I add usage tracking?

This repository includes support for Google Analytics or Plausible Analytics, but, by default, this is disabled.

To enable Google Analytics:

  • Create a Google Analytics 4 property and obtain the measurement ID (of the format G-XXXXXXXXXX)
  • In .env, add REACT_APP_GOOGLE_MEASUREMENT_ID=G-XXXXXXXXXX

Keep in mind that your region might have legislation about obtaining a user's consent before enabling trackers. This is up to downstream repos to implement.

To enable Plausible Analytics:

  • Create a new website with Plausible Analytics with a given domain, e.g. example.app
  • In .env, add REACT_APP_PLAUSIBLE_DOMAIN=example.app
  • If you are self-hosting Plausible Analytics, add REACT_APP_PLAUSIBLE_HOST=https://my-plausible-server-base-url, where my-plausible-server-base-url is the base url for your self-hosted Plausible instance (it assumes https://my-plausible-server-base-url/js/plausible.js is where plausible js script is hosted).

About

A German-language clone of the popular game Wordle made using React, Typescript, and Tailwind

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 93.9%
  • CSS 3.3%
  • HTML 2.2%
  • Other 0.6%