diff --git a/README.md b/README.md index 2870655..1acef1e 100644 --- a/README.md +++ b/README.md @@ -13,18 +13,22 @@ Hilfs‑Web‑App für deutsche Wordle‑Rätsel. Nutzer geben bekannte Buchstab ## Projektstruktur -``` -app.py # Flask‑App -scripts/generate_wordlist.py # Generator für Wortliste + Quellen‑JSON -templates/index.html # UI (Jinja2‑Template) -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 # Python‑Abhängigkeiten -LICENSE # MIT‑Lizenz -``` +```text +wordle-helper/ +├── app.py # Flask‑App +├── scripts/ +│ └── generate_wordlist.py # Generator für Wortliste + Quellen‑JSON +├── templates/ +│ └── index.html # UI (Jinja2‑Template) +├── 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 # Python‑Abhängigkeiten +└── ---