From 66f9f0340982f31ba65fa4db654857209e04e5b0 Mon Sep 17 00:00:00 2001 From: Jarvis Prime Date: Wed, 4 Mar 2026 04:41:05 +0000 Subject: [PATCH] Add .env.example, .gitignore --- .env.example | 17 +++++++++++++++++ .gitignore | 6 ++++++ 2 files changed, 23 insertions(+) create mode 100644 .env.example create mode 100644 .gitignore diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..7ed3b73 --- /dev/null +++ b/.env.example @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8470662 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +devintel.db +repos/ +__pycache__/ +*.pyc +.env +.venv/