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 ## Projektstruktur
``` ```text
app.py # FlaskApp wordle-helper/
scripts/generate_wordlist.py # Generator für Wortliste + QuellenJSON ├── app.py # FlaskApp
templates/index.html # UI (Jinja2Template) ├── scripts/
static/favicon.svg # Favicon (SVG) │ └── generate_wordlist.py # Generator für Wortliste + QuellenJSON
data/openthesaurus.txt # Quelle OpenThesaurus (Text) ├── templates/
data/words_de_5.txt # generierte Wortliste │ └── index.html # UI (Jinja2Template)
data/words_de_5_sources.json # Wort→Quellen (ot/wf) ├── static/
Dockerfile # Produktionsimage (Gunicorn) │ └── favicon.svg # Favicon (SVG)
requirements.txt # PythonAbhängigkeiten ├── data/
LICENSE # MITLizenz │ ├── 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
└──
--- ---