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" }, ]