From 5fa867dd7e24d9f6a7a66a240f0cdfe18de2a6f2 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Fri, 9 May 2025 16:06:07 +0200 Subject: [PATCH] Chore: Use `public_html` as build folder. `build` is used for Python. --- .gitignore | 3 +-- pyproject.toml | 10 +++++----- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index b33c6ee..aa01128 100644 --- a/.gitignore +++ b/.gitignore @@ -4,5 +4,4 @@ *.lock __pycache__ bdist.* -build/llm/*.txt -build/llm/cratedb-overview.md +public_html diff --git a/pyproject.toml b/pyproject.toml index 6f7d0e5..5ce51ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -165,9 +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" }, + { shell = "mkdir -p public_html/llm" }, + { shell = "cp src/index/cratedb-overview.md public_html/llm/" }, + { shell = "cp src/content/about/llms-txt.md public_html/llm/readme.md" }, + { shell = "llms_txt2ctx --optional=false src/index/cratedb-overview.md > public_html/llm/llms.txt" }, + { shell = "llms_txt2ctx --optional=true src/index/cratedb-overview.md > public_html/llm/llms-full.txt" }, ]