Initial commit

This commit is contained in:
2026-03-31 13:10:46 +02:00
commit f60d9628e0
52 changed files with 3383 additions and 0 deletions

49
.gitignore vendored Normal file
View File

@@ -0,0 +1,49 @@
# ── Node.js / React ───────────────────────────────────────────────────────────
node_modules/
dist/
build/
.next/
.nuxt/
.vite/
*.tsbuildinfo
# ── Python ────────────────────────────────────────────────────────────────────
__pycache__/
*.py[cod]
venv/
.venv/
env/
# ── Secrets ────────────────────────────────────────────────────────────────────
.env
.env.*
.env.local
.env.production
secret.env
*.secret
credentials.json
# ── Logs ──────────────────────────────────────────────────────────────────────
*.log
logs/
npm-debug.log*
yarn-debug.log*
# ── Modèles IA (trop lourds) ──────────────────────────────────────────────────
*.gguf
*.bin
*.safetensors
models/
# ── Cache ─────────────────────────────────────────────────────────────────────
.cache/
.parcel-cache/
.pytest_cache/
.coverage
# ── IDE ───────────────────────────────────────────────────────────────────────
.vscode/
.idea/
*.swp
.DS_Store
Thumbs.db