chore: project scaffold (uv, .env.example, README, lyra package)
This commit is contained in:
+26
-49
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user