mirror of
https://github.com/basicmachines-co/basic-memory
synced 2026-06-21 13:47:35 +00:00
74847cc380
Co-authored-by: Claude <noreply@anthropic.com>
60 lines
623 B
Plaintext
60 lines
623 B
Plaintext
# Git files
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Development files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Testing files
|
|
tests/
|
|
test-int/
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Build artifacts
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
|
|
# Virtual environments (uv creates these during build)
|
|
.venv/
|
|
venv/
|
|
.env
|
|
|
|
# CI/CD files
|
|
.github/
|
|
|
|
# Documentation (keep README.md and pyproject.toml)
|
|
docs/
|
|
CHANGELOG.md
|
|
CLAUDE.md
|
|
CONTRIBUTING.md
|
|
|
|
# Example files not needed for runtime
|
|
examples/
|
|
|
|
# Local development files
|
|
.basic-memory/
|
|
*.db
|
|
*.sqlite3
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
*.log |