This commit is contained in:
2025-08-19 12:49:03 +02:00
parent f35503e0b2
commit adf54635de

View File

@@ -13,18 +13,22 @@ HilfsWebApp für deutsche WordleRätsel. Nutzer geben bekannte Buchstab
## Projektstruktur
```
app.py # FlaskApp
scripts/generate_wordlist.py # Generator für Wortliste + QuellenJSON
templates/index.html # UI (Jinja2Template)
static/favicon.svg # Favicon (SVG)
data/openthesaurus.txt # Quelle OpenThesaurus (Text)
data/words_de_5.txt # generierte Wortliste
data/words_de_5_sources.json # Wort→Quellen (ot/wf)
Dockerfile # Produktionsimage (Gunicorn)
requirements.txt # PythonAbhängigkeiten
LICENSE # MITLizenz
```
```text
wordle-helper/
├── app.py # FlaskApp
├── scripts/
│ └── generate_wordlist.py # Generator für Wortliste + QuellenJSON
├── templates/
│ └── index.html # UI (Jinja2Template)
├── static/
│ └── favicon.svg # Favicon (SVG)
├── data/
│ ├── openthesaurus.txt # Quelle OpenThesaurus (Text)
│ ├── words_de_5.txt # generierte Wortliste
│ └── words_de_5_sources.json # Wort→Quellen (ot/wf)
├── Dockerfile # Produktionsimage (Gunicorn)
├── requirements.txt # PythonAbhängigkeiten
└──
---