32 lines
354 B
Plaintext
32 lines
354 B
Plaintext
# Rippy — Was die KI NICHT lesen soll
|
|
# gitignore-Syntax, was im Kontext ignoriert wird
|
|
|
|
# Secrets & Config
|
|
.env
|
|
*.env
|
|
config/secrets.yml
|
|
config/api-keys.yml
|
|
|
|
# Large data files
|
|
*.mkv
|
|
*.flac
|
|
*.iso
|
|
media/
|
|
|
|
# Build artifacts
|
|
frontend/dist
|
|
node_modules/
|
|
__pycache__/
|
|
*.egg-info/
|
|
.pytest_cache/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|