Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
CLI tool for API key and JWT lifecycle management with encrypted local store — generate, store, verify, rotate, and revoke keys with an encrypted local keystore.

## Build & Test Commands
- Install: `pip install --index-url https://coding-dev-tools.github.io/pypi-index/simple/ apiauth` or `pip install git+https://github.com/Coding-Dev-Tools/apiauth.git`
- Install: `pip install git+https://github.com/Coding-Dev-Tools/apiauth.git` (the self-hosted PyPI index is not published, so the `--index-url` form does not work yet).
- Test: `pytest tests/` (or `python -m pytest tests/ -v --tb=short`)
- Lint: `ruff check src/ --target-version py310`
- Build: `pip wheel . --wheel-dir dist/`
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@
[![LibHunt](https://img.shields.io/badge/LibHunt-%E2%87%92-blue?logo=codeigniter)](https://www.libhunt.com/r/Coding-Dev-Tools/apiauth)
## Installation
```bash
pip install --index-url https://coding-dev-tools.github.io/pypi-index/simple/ apiauth
# or: pip install git+https://github.com/Coding-Dev-Tools/apiauth.git
pip install git+https://github.com/Coding-Dev-Tools/apiauth.git

# Generate an API key
apiauth generate api-key --name "My API Key" --service "api-gateway" --expiry-days 90
Expand Down
Loading