# MYP - Manage your Printer .gitignore # Betriebssystem-spezifische Dateien .DS_Store Thumbs.db desktop.ini # Sensible Daten und Konfigurationen config/secure/ *.env *.pem *.key *.cer .env.local .env.development.local .env.test.local .env.production.local # Python spezifische Dateien __pycache__/ *.py[cod] *$py.class *.so .Python env/ build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ *.egg-info/ .installed.cfg *.egg venv/ ENV/ # JavaScript/Node spezifische Dateien node_modules/ npm-debug.log* yarn-debug.log* yarn-error.log* .pnpm-debug.log* .next/ out/ .vercel *.tsbuildinfo # IDE Dateien .idea/ .vscode/ *.swp *.swo *~ .project .classpath .settings/ # Logs und temporäre Dateien logs/ *.log npm-debug.log* yarn-debug.log* yarn-error.log* temp/ tmp/ # Datenbanken und SQLite Dateien *.sqlite *.sqlite3 *.db instance/ # Kompilierte Dateien und Binaries *.com *.class *.dll *.exe *.o *.a *.so *.dylib