forked from sagnik/Velocity-OS
100 lines
2.8 KiB
Plaintext
100 lines
2.8 KiB
Plaintext
# Velocity-OS — Gitignore
|
|
# Generated by Velocity-OS project setup
|
|
|
|
# ── Agent Context & Local AI Files ─────────────────────────────
|
|
.agent context/
|
|
.agent_context/
|
|
.Agent Context/
|
|
**/.agent context/
|
|
**/.Agent Context/
|
|
|
|
# ── Node / React / Vite ────────────────────────────────────────
|
|
node_modules/
|
|
dist/
|
|
dist-ssr/
|
|
.vite/
|
|
*.local
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# ── Python ────────────────────────────────────────────────────
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
venv/
|
|
.venv/
|
|
env/
|
|
pip-log.txt
|
|
*.egg-info/
|
|
.eggs/
|
|
.tox/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
|
|
# ── Secrets & Environment ──────────────────────────────────────
|
|
*.env
|
|
secrets/
|
|
infrastructure/k3s/secrets/*.yaml
|
|
!infrastructure/k3s/secrets/secrets-template.yaml
|
|
*.key
|
|
*.pem
|
|
*.pfx
|
|
*.p12
|
|
|
|
# ── Docker / Container ────────────────────────────────────────
|
|
.docker/
|
|
docker-compose.override.yml
|
|
|
|
# ── Database ──────────────────────────────────────────────────
|
|
*.sql.bak
|
|
*.dump
|
|
pgdata/
|
|
|
|
# ── Test Data (never in production) ───────────────────────────
|
|
core/db/seed_test_users.sql
|
|
|
|
# ── AI Models & Large Files ───────────────────────────────────
|
|
*.safetensors
|
|
*.ckpt
|
|
*.pt
|
|
*.pth
|
|
*.gguf
|
|
*.bin
|
|
*.pkl
|
|
models/
|
|
checkpoints/
|
|
loras/
|
|
|
|
# ── OS ────────────────────────────────────────────────────────
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
*.swp
|
|
*.swo
|
|
|
|
# ── IDE ───────────────────────────────────────────────────────
|
|
.idea/
|
|
.vscode/settings.json
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
|
|
# ── Logs ──────────────────────────────────────────────────────
|
|
*.log
|
|
logs/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# ── TypeScript build output ───────────────────────────────────
|
|
*.tsbuildinfo
|
|
|
|
# ── Coverage ──────────────────────────────────────────────────
|
|
coverage/
|
|
.nyc_output/
|