Add .env.example, .gitignore
This commit is contained in:
17
.env.example
Normal file
17
.env.example
Normal 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
6
.gitignore
vendored
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
devintel.db
|
||||||
|
repos/
|
||||||
|
__pycache__/
|
||||||
|
*.pyc
|
||||||
|
.env
|
||||||
|
.venv/
|
||||||
Reference in New Issue
Block a user