yesod-mirror/GEMINI.md
Copybara 8467693da2 Project import generated by Copybara.
GitOrigin-RevId: b92a7f45eee3c5424fc21e9e9cc9ac1dcde0ce30
2026-01-20 21:50:19 +00:00

11 lines
799 B
Markdown

# Gemini Context
## Dependency Research (Vendoring)
This project uses a specialized **Reference Vendor Cache** for inspecting external dependency source code.
* **Location:** Look for source code in the `vendor/` directory.
* **Structure:** This directory is a symlink to a shared cache (e.g., `../yesod_vendored_deps`). It contains the source code for Go, Python, and other dependencies.
* **Usage:** You can freely `read_file` or `search_file_content` within `vendor/`.
* **Note:** This directory is **NOT** used by `bazel build`. It is strictly for your reference. If you need to see how a dependency is implemented, look here.
* **Troubleshooting:** If the `vendor/` directory is missing (e.g., in a new worktree), you may need to symlink it: `ln -s ../yesod_vendored_deps vendor`.