128 lines
1.5 KiB
Plaintext
128 lines
1.5 KiB
Plaintext
# Git
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
*.egg
|
|
*.egg-info/
|
|
.eggs/
|
|
dist/
|
|
build/
|
|
*.whl
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.virtualenv/
|
|
|
|
# Django
|
|
*.log
|
|
db.sqlite3
|
|
db.sqlite3-journal
|
|
/staticfiles/
|
|
/media/
|
|
/django_project/staticfiles/
|
|
/django_project/media/
|
|
|
|
# Node.js
|
|
node_modules/
|
|
.npm/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
package-lock.json
|
|
yarn.lock
|
|
pnpm-lock.yaml
|
|
|
|
# Next.js
|
|
.next/
|
|
out/
|
|
.vercel/
|
|
.turbo/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
.env.*.local
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# Testing
|
|
.coverage
|
|
.pytest_cache/
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
coverage.xml
|
|
*.cover
|
|
|
|
# Documentation
|
|
docs/
|
|
*.md
|
|
!README-docker.md
|
|
|
|
# Uploads and sensitive data
|
|
files/firmware/*
|
|
files/pcap/*
|
|
files/wireshark_capture/*
|
|
Frontend/iot-pre-tester-frontend/public/filesAttachment/*
|
|
Frontend/iot-pre-tester-frontend/public/wireshark_capture/*
|
|
|
|
# Keep directory structure but ignore contents
|
|
!files/firmware/.gitkeep
|
|
!files/pcap/.gitkeep
|
|
!files/wireshark_capture/.gitkeep
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Data
|
|
data/
|
|
*.sqlite3
|
|
|
|
# Hashcat files
|
|
hashcat.potfile*
|
|
*.hccapx
|
|
*.hcmask
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# Docker
|
|
Dockerfile*
|
|
docker-compose*.yml
|
|
.dockerignore
|
|
|
|
# Scripts (keep only necessary ones)
|
|
start_project.sh
|
|
start_frontend.sh
|
|
run.sh
|
|
automated_start.py
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|