101 lines
1.6 KiB
Plaintext
101 lines
1.6 KiB
Plaintext
# ============================================
|
|
# DATENSCHUTZ & SENSIBLE DATEN
|
|
# ============================================
|
|
|
|
# Datenbank
|
|
*.sqlite3
|
|
*.db
|
|
db.sqlite3
|
|
django_project/db.sqlite3
|
|
|
|
# Upload-Verzeichnisse
|
|
files/
|
|
Frontend/iot-pre-tester-frontend/public/filesAttachment/
|
|
Frontend/iot-pre-tester-frontend/public/wireshark_capture/
|
|
|
|
# Log-Dateien
|
|
*.log
|
|
errors.log
|
|
django_project/*.log
|
|
|
|
# Analyse-Ergebnisse
|
|
nmap_output.txt
|
|
hashcat.potfile
|
|
*.potfile
|
|
|
|
# Environment-Variablen
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
django_project/IoTPreTester/.env
|
|
|
|
# ============================================
|
|
# PYTHON
|
|
# ============================================
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
env/
|
|
*.egg-info/
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# ============================================
|
|
# DJANGO
|
|
# ============================================
|
|
/media
|
|
/staticfiles
|
|
django_project/static/
|
|
django_project/media/
|
|
django_project/sessions/
|
|
|
|
# Django Migrations (auto-generated)
|
|
**/migrations/0*.py
|
|
!**/migrations/__init__.py
|
|
|
|
# ============================================
|
|
# NODE.JS / NEXT.JS
|
|
# ============================================
|
|
node_modules/
|
|
.next/
|
|
.turbo/
|
|
out/
|
|
build/
|
|
dist/
|
|
*.tsbuildinfo
|
|
.npm
|
|
.eslintcache
|
|
Frontend/iot-pre-tester-frontend/.env*.local
|
|
|
|
# ============================================
|
|
# IDE & EDITOR
|
|
# ============================================
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# ============================================
|
|
# SYSTEM
|
|
# ============================================
|
|
Thumbs.db
|
|
*.bak
|
|
*.tmp
|
|
*.temp
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd |