Compare commits

...
2 Commits
Author SHA1 Message Date
duffyduck e951c839ca example.csv 2026-05-12 11:07:54 +02:00
duffyduckandClaude Opus 4.7 2179d435ec fix .gitignore: ignore *.csv but keep example.csv
Reihenfolge angepasst: *.csv vor !example.csv, sonst greift die Negierung
nicht. Verhindert, dass Kundendaten/Passwörter aus CSVs versehentlich ins
Repo gelangen.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-12 11:07:09 +02:00
2 changed files with 7 additions and 1 deletions
+4 -1
View File
@@ -5,5 +5,8 @@ __pycache__/
.venv/
venv/
*.pdf
!example.csv
# CSVs enthalten Kundendaten/Passwörter nicht ins Repo.
# Ausnahme: die Beispiel-CSV.
*.csv
!example.csv
+3
View File
@@ -0,0 +1,3 @@
Vorname;Name;emailadresse;pleskhost;keriohost;nextcloudhost;kerioemailkennwort;pleskemailkennwort;nextcloudgruppe;nextcloudspeicher;nextcloudkennwort
Max;Mustermann;max.mustermann@example.de;mail.example.de;kerio.example.de;cloud.example.de;KerioGeheim123!;PleskGeheim123!;Mitarbeiter;10;CloudGeheim123!
Erika;Müller;erika.mueller@example.de;mail.example.de;kerio.example.de;cloud.example.de;KerioGeheim456!;PleskGeheim456!;Mitarbeiter;;CloudGeheim456!
1 Vorname Name emailadresse pleskhost keriohost nextcloudhost kerioemailkennwort pleskemailkennwort nextcloudgruppe nextcloudspeicher nextcloudkennwort
2 Max Mustermann max.mustermann@example.de mail.example.de kerio.example.de cloud.example.de KerioGeheim123! PleskGeheim123! Mitarbeiter 10 CloudGeheim123!
3 Erika Müller erika.mueller@example.de mail.example.de kerio.example.de cloud.example.de KerioGeheim456! PleskGeheim456! Mitarbeiter CloudGeheim456!