You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
883 B
Plaintext
89 lines
883 B
Plaintext
# Python bytecode
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
|
|
# Build / package artifacts
|
|
.Python
|
|
build/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
wheels/
|
|
share/python-wheels/
|
|
sdist/
|
|
parts/
|
|
var/
|
|
lib/
|
|
lib64/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# uv
|
|
uv.lock
|
|
|
|
# Flask / local env
|
|
instance/
|
|
.flaskenv
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
!*.env.example.jinja
|
|
.envrc
|
|
|
|
# Runtime data
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
*.db-journal
|
|
*.db-wal
|
|
*.db-shm
|
|
runtime/
|
|
iti/runtime/
|
|
logs/
|
|
*.log
|
|
*.pid
|
|
|
|
# Frontend build output
|
|
iti/static/dist/
|
|
|
|
# Test / coverage / static analysis
|
|
.pytest_cache/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
.cache/
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.py,cover
|
|
.hypothesis/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.pytype/
|
|
.pyre/
|
|
dmypy.json
|
|
|
|
# IDE / OS
|
|
.idea/
|
|
*.iml
|
|
.DS_Store
|
|
Thumbs.db
|
|
Desktop.ini
|
|
.ipynb_checkpoints/
|
|
|
|
# Local tool pins
|
|
/.python-version
|
|
|
|
# Local AI session notes
|
|
.grill/
|