Vollständiges 3D-Druck-Management-System für Mercedes-Benz TBA Berlin - Flask-basierte Webanwendung mit Blueprint-Architektur - SQLite-Datenbank mit WAL-Modus und Raspberry Pi Optimierungen - TP-Link Tapo Smart Plug Integration - Job-Queue-System mit Prioritätsverwaltung - Benutzer- und Gastzugang mit OTP-System - Admin-Panel mit umfassenden Verwaltungsfunktionen - HTTPS-Unterstützung für Kiosk-Mode - Responsive UI mit TailwindCSS 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
92 lines
861 B
Plaintext
92 lines
861 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
ENV/
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Database
|
|
*.db
|
|
*.db-wal
|
|
*.db-shm
|
|
database/
|
|
backend/database/
|
|
backend/backend/database/
|
|
|
|
# Instance/Session files
|
|
instance/
|
|
*.pkl
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Node
|
|
node_modules/
|
|
network-visualization/node_modules/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
|
|
# SSL certificates
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
|
|
# Uploads
|
|
uploads/
|
|
|
|
# Backup files
|
|
backup/
|
|
*.bak
|
|
|
|
# Test files
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Startup test logs
|
|
startup_test*.log
|
|
|
|
# Private/IHK files
|
|
IHK_Projektdokumentation/
|
|
dokumentation/
|
|
LEGACY-torben_frontend/
|
|
legacy_frontend/
|
|
network-visualization/
|
|
|
|
# Cookies
|
|
cookies.txt
|
|
|
|
# Final test
|
|
final_test.log |