Add .env.example, .gitignore

This commit is contained in:
Jarvis Prime
2026-03-04 04:41:05 +00:00
parent 4acb057042
commit 66f9f03409
2 changed files with 23 additions and 0 deletions

17
.env.example Normal file
View File

@@ -0,0 +1,17 @@
# LLM Backend: "ollama" or "openai"
LLM_BACKEND=ollama
# Ollama settings
OLLAMA_URL=http://192.168.86.172:11434
OLLAMA_MODEL=qwen2.5:7b
# OpenAI-compatible settings (Kiro gateway, OpenRouter, etc.)
# OPENAI_URL=http://192.168.86.11:8000
# OPENAI_MODEL=claude-haiku-4
# OPENAI_API_KEY=not-needed
# Repo to ingest
TARGET_REPO=https://github.com/labstack/echo.git
# Parallelism
MAX_CONCURRENT=4

6
.gitignore vendored Normal file
View File

@@ -0,0 +1,6 @@
devintel.db
repos/
__pycache__/
*.pyc
.env
.venv/