fix: correct install line to git+ssh form (was git+https, would not install)

the README install pin used git+https with no git@ prefix or .git suffix, which does not resolve against the SSH-only Gitea remote. corrected to the canonical git+ssh form.

Signed-off-by: disqualifier <dev@disqualifier.me>
This commit is contained in:
disqualifier 2026-06-28 17:18:28 -04:00
parent 92ea363cb7
commit 6a9de93691

View File

@ -8,13 +8,13 @@ helpers for the common paths, with a raw escape hatch for everything else.
`requirements.txt`:
```
mongo @ git+https://git.rethinkstudios.io/rethink-public/mongo@v0.1.0
mongo @ git+ssh://git@git.rethinkstudios.io/rethink-public/mongo.git@v0.1.0
```
Direct:
```bash
pip install "mongo @ git+https://git.rethinkstudios.io/rethink-public/mongo@v0.1.0"
pip install "mongo @ git+ssh://git@git.rethinkstudios.io/rethink-public/mongo.git@v0.1.0"
```
Requires `motor` and `pymongo` (pulled transitively).