Skip to content

Commit 354e6d9

Browse files
committed
Remove mimir-autodocs (archived as tag)
1 parent 6566ec5 commit 354e6d9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+35
-35
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Server Configuration
2-
API_KEY=autodocs_your_api_key_here
2+
API_KEY=coderag_your_api_key_here
33
PORT=3001
44

55
# Supabase Configuration
66
SUPABASE_URL=https://your-project.supabase.co
77
SUPABASE_SERVICE_ROLE_KEY=your_service_role_key
8-
SUPABASE_TABLE=autodocs_chunks
8+
SUPABASE_TABLE=code_chunks
99
SIMILARITY_THRESHOLD=0.5
1010
MATCH_COUNT=10
1111

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ DB_URL ?= $(or $(DATABASE_URL),$(shell echo $$DATABASE_URL))
88
DB_PASSWORD ?= $(or $(PGPASSWORD),$(shell echo $$PGPASSWORD))
99
PSQL ?= psql
1010
SETUP_SQL := src/supabase/setup.sql
11-
IMAGE_NAME ?= mimir-autodocs:local
11+
IMAGE_NAME ?= mimir-code-rag:local
1212
CONFIG_PATH ?= .env
1313
CONFIG_ABS := $(abspath $(CONFIG_PATH))
1414
PORT ?= 3001
Lines changed: 5 additions & 5 deletions
Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "mimir-autodocs",
2+
"name": "mimir-code-rag",
33
"version": "1.0.0",
44
"description": "Auto-documentation RAG for TypeScript projects - extracts code entities via AST parsing and generates contextual embeddings",
55
"main": "dist/index.js",
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import crypto from "node:crypto";
22

33
function generateApiKey(): string {
4-
return `autodocs_${crypto.randomBytes(32).toString("hex")}`;
4+
return `coderag_${crypto.randomBytes(32).toString("hex")}`;
55
}
66

77
const apiKey = generateApiKey();

0 commit comments

Comments
 (0)