Initial commit: Velocity-OS migration

This commit is contained in:
2026-05-01 12:32:19 +05:30
commit 407af828d4
283 changed files with 207782 additions and 0 deletions

99
.gitignore vendored Normal file
View File

@@ -0,0 +1,99 @@
# 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/