114 lines
1.2 KiB
Plaintext
114 lines
1.2 KiB
Plaintext
# Byte-compiled / optimized / DLL files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Distribution / packaging
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# Unit test / coverage reports
|
|
htmlcov/
|
|
.tox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.py,cover
|
|
.pytest_cache/
|
|
|
|
# Environments
|
|
.env
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Project specific - RuWiki SchoolNotes
|
|
# Database files
|
|
data/
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
*.db-journal
|
|
*.sqlite-journal
|
|
*.sqlite3-journal
|
|
|
|
# Configuration files with secrets
|
|
.env.local
|
|
.env.production
|
|
config.local.toml
|
|
secrets.json
|
|
|
|
# Logs and monitoring
|
|
logs/
|
|
*.log
|
|
*.log.*
|
|
monitoring/
|
|
metrics/
|
|
|
|
# Temporary processing files
|
|
temp/
|
|
tmp/
|
|
cache/
|
|
.cache/
|
|
processing_temp/
|
|
|
|
# Input files with sensitive URLs (keep example only)
|
|
input_production.txt
|
|
input_large.txt
|
|
urls_private.txt
|
|
|
|
# Test artifacts specific to our project
|
|
test_outputs/
|
|
test_db/
|
|
mock_data/
|
|
test_logs/
|
|
|
|
# mypy
|
|
.mypy_cache/
|
|
.
|
|
# ruff
|
|
.ruff_cache/
|
|
|
|
# Performance profiling
|
|
*.prof
|
|
profile_results/
|
|
|
|
# API response caches
|
|
api_cache/
|
|
wikipedia_cache/
|
|
openai_cache/ |