Release v1.0 – PiCopy vollständig dokumentiert und bereit zur Veröffentlichung
- README.md mit vollständiger Anleitung, Features, Tabellen und Schnellstart - install.sh neu geschrieben: sauberer Installer mit Farbausgabe, apt-Check, Download-Fallback und abschließender Statusmeldung mit URL - LICENSE (MIT) hinzugefügt - .gitignore: config.json, state.json, rclone.conf, logs/ und deploy.sh excluded - deploy.sh entfernt (enthielt Zugangsdaten) - requirements.txt aktualisiert Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
38
.gitignore
vendored
Normal file
38
.gitignore
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
# Runtime-Dateien (nicht ins Repo)
|
||||
config.json
|
||||
state.json
|
||||
rclone.conf
|
||||
logs/
|
||||
|
||||
# Deploy-Script (enthält ggf. Zugangsdaten)
|
||||
deploy.sh
|
||||
|
||||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*.pyo
|
||||
*.pyd
|
||||
.Python
|
||||
venv/
|
||||
.venv/
|
||||
*.egg-info/
|
||||
dist/
|
||||
build/
|
||||
|
||||
# macOS
|
||||
.DS_Store
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
|
||||
# Editor
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# Mount-Verzeichnisse (auf dem Pi)
|
||||
/mnt/picopy*/
|
||||
Reference in New Issue
Block a user