11 lines
799 B
Markdown
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`.
|