Build Evil Wordle app

This commit is contained in:
Space-Banane
2026-05-14 14:37:17 +02:00
commit 3f5ffc74af
36 changed files with 5250 additions and 0 deletions

33
README.md Normal file
View File

@@ -0,0 +1,33 @@
# Evil Wordle
A dark Wordle-style browser game with daily, infinite, daily evil, custom length, and super evil modes.
## Install
```bash
npm install
```
## Run
```bash
npm run dev
```
Open the local URL printed by Vite.
## Build
```bash
npm run build
```
## Docker
```bash
docker compose up --build
```
The compose service publishes the app on `0.0.0.0:6666`.
The app is built with React, Tailwind CSS, and Vite. Progress, settings, and stats are stored in `localStorage`. Guess validation uses `word-list-json`; curated local word buckets in `src/data/words.ts` control target selection and provide the fallback pool.