Chore: Use public_html as build folder. build is used for Python.#14
Chore: Use public_html as build folder. build is used for Python.#14
public_html as build folder. build is used for Python.#14Conversation
WalkthroughThe changes update the build output directory from Changes
Poem
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Nitpick comments (2)
.gitignore (1)
7-7: Use an anchored ignore pattern forpublic_html.
To explicitly ignore only the rootpublic_html/directory (and avoid matching files or folders namedpublic_htmlelsewhere), update the entry to include leading and trailing slashes:-public_html +/public_html/pyproject.toml (1)
168-168: Clean up stale artifacts before creating new build output.
Introduce a removal step to avoid orphaned files from previous runs:-{ shell = "mkdir -p public_html/llm" }, +{ shell = "rm -rf public_html/llm && mkdir -p public_html/llm" },
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (2)
.gitignore(1 hunks)pyproject.toml(1 hunks)
🔇 Additional comments (2)
pyproject.toml (2)
168-172: Build output path updated correctly.
Thebuildtask now creates and populatespublic_html/llm, aligning with the.gitignorechange. No issues detected here.
168-172:Details
✅ Verification successful
Verify no residual
build/llmreferences remain.
Ensure that CI workflows, documentation or deployment scripts no longer point to the old path by running:[Any matches should be updated or removed.]
🏁 Script executed:
rg -n 'build/llm'Length of output: 17
No residual
build/llmreferences found.
Runningrg -n 'build/llm'produced no matches, confirming that CI workflows, documentation, and deployment scripts no longer reference the old path.
What the title says.