Initial commit
This commit is contained in:
50
.gitignore
vendored
Normal file
50
.gitignore
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
# ── Python ──────────────────────────────────────────────────────────────────
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*.pyo
|
||||
*.pyd
|
||||
*.pyc
|
||||
|
||||
# ── Environnements virtuels ──────────────────────────────────────────────────
|
||||
venv/
|
||||
.venv/
|
||||
env/
|
||||
ENV/
|
||||
Pipfile.lock
|
||||
|
||||
# ── Secrets ───────────────────────────────────────────────────────────────────
|
||||
.env
|
||||
.env.*
|
||||
secret.env
|
||||
secrets.py
|
||||
*.secret
|
||||
credentials.json
|
||||
token.json
|
||||
|
||||
# ── Logs ─────────────────────────────────────────────────────────────────────
|
||||
*.log
|
||||
logs/
|
||||
|
||||
# ── IDE ───────────────────────────────────────────────────────────────────────
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# ── Tests / Coverage ─────────────────────────────────────────────────────────
|
||||
.coverage
|
||||
htmlcov/
|
||||
.pytest_cache/
|
||||
|
||||
# ── Build ─────────────────────────────────────────────────────────────────────
|
||||
dist/
|
||||
build/
|
||||
*.egg-info/
|
||||
|
||||
# ── Modèles IA (trop lourds pour git) ───────────────────────────────────────
|
||||
*.gguf
|
||||
*.bin
|
||||
*.safetensors
|
||||
models/
|
||||
weights/
|
||||
Reference in New Issue
Block a user