mirror of
https://github.com/furyhawk/agent_delta.git
synced 2026-07-21 02:05:36 +00:00
58 lines
441 B
Plaintext
58 lines
441 B
Plaintext
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Python
|
|
__pycache__
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
.venv
|
|
venv/
|
|
ENV/
|
|
|
|
# IDE
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
|
|
# Testing
|
|
.pytest_cache
|
|
.coverage
|
|
htmlcov/
|
|
.tox
|
|
.nox
|
|
|
|
# Documentation
|
|
docs/_build/
|
|
*.md
|
|
!README.md
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
|
|
# Development files
|
|
.env
|
|
.env.local
|
|
*.db
|
|
*.sqlite
|
|
|
|
# Docker
|
|
Dockerfile*
|
|
docker-compose*.yml
|
|
.docker
|
|
|
|
# CI/CD
|
|
.github/
|
|
.gitlab-ci.yml
|
|
|
|
# Misc
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.log
|