Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a mention about keyring for the authentification #33

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,17 @@ repos:
In order to install this hook, you either need to specify `default_install_hook_types` (as above) and run `pre-commit install`,
or you have to install it via `pre-commit install --install-hooks -t post-checkout -t post-merge -t post-rewrite`.

If you use keyring to authenticate to a private index:

```yaml
- repo: https://github.com/astral-sh/uv-pre-commit
# uv version.
rev: 0.5.12
hooks:
- id: uv-sync
additional_dependencies: [keyring]
```

To synchronize all dependencies in a workspace:

```yaml
Expand Down