From 40203ae3cbdf21d807eaf1a30219cc5de7ee3d14 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Fri, 9 May 2025 15:40:05 +0200 Subject: [PATCH] Chore: Clean up `build` folder. Sources should be in `src`. --- pyproject.toml | 2 ++ build/llm/README.md => src/content/about/llms-txt.md | 0 2 files changed, 2 insertions(+) rename build/llm/README.md => src/content/about/llms-txt.md (100%) diff --git a/pyproject.toml b/pyproject.toml index 8b90d08..6f7d0e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -165,7 +165,9 @@ lint = [ ] build = [ + { shell = "mkdir -p build/llm" }, { shell = "cp src/index/cratedb-overview.md build/llm/" }, + { shell = "cp src/content/about/llms-txt.md build/llm/readme.md" }, { shell = "llms_txt2ctx --optional=false src/index/cratedb-overview.md > build/llm/llms.txt" }, { shell = "llms_txt2ctx --optional=true src/index/cratedb-overview.md > build/llm/llms-full.txt" }, ] diff --git a/build/llm/README.md b/src/content/about/llms-txt.md similarity index 100% rename from build/llm/README.md rename to src/content/about/llms-txt.md