chore: project scaffold (uv, .env.example, README, lyra package)

This commit is contained in:
Claude
2026-05-16 06:01:08 +00:00
parent faf4e8a1aa
commit b2523c2561
6 changed files with 192 additions and 49 deletions
+26 -49
View File
@@ -1,57 +1,34 @@
# =============================
# 📦 General
# =============================
# Python
__pycache__/
*.pyc
*.log
/.vscode/
.vscode/
# =============================
# 🔐 Environment files (NEVER commit secrets!)
# =============================
# Ignore all .env files
*.py[cod]
*.egg-info/
.pytest_cache/
.ruff_cache/
.mypy_cache/
build/
dist/
# Virtual environments
.venv/
venv/
env/
# Env files (never commit secrets)
.env
.env.local
.env.*.local
**/.env
**/.env.local
# BUT track .env.example templates (safe to commit)
!.env.example
!**/.env.example
# Ignore backup directory
.env-backups/
# Local data
data/
*.db
*.sqlite
*.sqlite3
# =============================
# 🐳 Docker volumes (HUGE)
# =============================
volumes/
*/volumes/
# IDE / OS
.vscode/
.idea/
.DS_Store
# =============================
# 📚 Databases & vector stores
# =============================
postgres_data/
neo4j_data/
*/postgres_data/
*/neo4j_data/
rag/chromadb/
rag/*.sqlite3
rag/chatlogs/
rag/lyra-chatlogs/
# =============================
# 🤖 Model weights (big)
# =============================
models/
*.gguf
*.bin
*.pt
*.safetensors
# =============================
# 📦 Node modules (installed via npm)
# =============================
node_modules/
core/relay/node_modules/
# Logs
*.log