54 lines
543 B
Plaintext
54 lines
543 B
Plaintext
# temp files
|
|
.DS_Store
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Python files
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
|
|
# Virtual environments
|
|
env/
|
|
.venv/
|
|
|
|
# environment variables
|
|
.env
|
|
*.env
|
|
# except example files
|
|
!config/*.env.example
|
|
|
|
# github instruction files
|
|
.github/instructions/
|
|
|
|
# Python packaging artifacts
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
pip-wheel-metadata/
|
|
|
|
# Test artifacts
|
|
.coverage
|
|
coverage.xml
|
|
htmlcov/
|
|
.pytest_cache/
|
|
|
|
# Mypy cache
|
|
.mypy_cache/
|
|
|
|
# Linting cache
|
|
.ruff_cache/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# SQLite database
|
|
*.sqlite3
|
|
test*.db
|
|
|
|
# Act runner files
|
|
.runner
|