Files
semantica/.gitignore
T
Don Simpson 976a20496d feat: Add Amazon Neptune Database Graph Store Support
- Implement NeptuneAuthTokenManager extending Neo4j AuthManager for IAM SigV4 signing
- Add automatic token refresh and security exception handling
- Add retry logic with backoff for transient errors (signature expired, connection closed)
- Add connection recovery with driver recreation
- Add NeptuneDriver, NeptuneSession, NeptuneTransaction wrapper classes
- Use native Neptune ~id via id() function for all CRUD operations
- Add graph-amazon-neptune optional dependency group (boto3, neo4j)
- Update cookbook with Amazon Neptune Graph Store examples
- Add comprehensive tests (61 tests covering all GraphStore interface methods)

Closes #151
2026-01-08 20:13:28 -05:00

113 lines
1.1 KiB
Plaintext

# MkDocs
site/
.mkdocs_cache/
# Testing
/coverage
htmlcov/
.coverage
.coverage.*
coverage.xml
*.cover
.pytest_cache/
.tox/
# Environment variables and secrets
.env
.env.*
!.env.example
*.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# API Keys and Secrets
*.key
*.pem
*.p12
*.pfx
secrets/
*.secret
config/secrets.yaml
config/secrets.yml
credentials.json
credentials.yaml
*.credentials
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
ENV/
.venv/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
.python-version
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
*.sublime-project
*.sublime-workspace
# OS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
Desktop.ini
# Logs
*.log
*.log.*
logs/
*.cache
# Test data and databases
test_data/
sample_data/
*.test.db
*.test.sqlite
*.test.sqlite3
*.db-journal
# Temporary files
*.tmp
*.bak
*.backup
*.old
*.orig
# Personal/Development
.personal/
.local/
*.local
# Test Results
test_results.txt