Files
project-lyra/.gitignore
2025-11-26 03:18:15 -05:00

57 lines
1.0 KiB
Plaintext

# =============================
# 📦 General
# =============================
__pycache__/
*.pyc
*.log
# =============================
# 🔐 Environment files (NEVER commit secrets!)
# =============================
# Ignore all .env files
.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/
# =============================
# 🐳 Docker volumes (HUGE)
# =============================
volumes/
*/volumes/
# =============================
# 📚 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/