47 lines
445 B
Plaintext
47 lines
445 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
.venv/
|
|
env/
|
|
ENV/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
|
|
# Logs and databases
|
|
*.log
|
|
logs/
|
|
*.sqlite3
|
|
*.db
|
|
|
|
# JMeter (only exclude binary files, keep the test plan)
|
|
jmeter/bin/
|
|
jmeter/lib/
|
|
|
|
# Dockerfile
|
|
Dockerfile
|
|
docker-compose.yaml
|
|
.dockerignore
|
|
|
|
# Testing
|
|
.coverage
|
|
htmlcov/
|
|
.pytest_cache/ |