init: onboarding systém pro CZ Mastodon komunitu

This commit is contained in:
2026-03-31 20:44:13 +02:00
commit 60ad4f0114
7 changed files with 1794 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
# fedi_start
Onboarding systém pro nové uživatele Mastodonu (CZ/SK komunita).
## Soubory
| Soubor | Popis |
|---|---|
| `start.html` | Úvodní onboarding stránka |
| `accounts.html` | Interaktivní seznam CZ účtů s filtry |
| `accounts.json` | Data účtů (generováno skriptem) |
| `starter-general.csv` | Starter pack pro import do Mastodonu |
| `mastodon_cz_accounts.py` | Automatický sběr CZ/SK účtů |
## Lokální spuštění
```bash
python3 -m http.server 8080
# http://localhost:8080/accounts.html
```
## Generování dat
```bash
python3 mastodon_cz_accounts.py --output .
```
## Cron
```
0 3 * * * /usr/bin/python3 /opt/fedi_start/mastodon_cz_accounts.py --output /var/www/fedi_start/
```