revert default to localhost.

the slow resolution was due to Docker desktop...

patch bump
This commit is contained in:
onyx-and-iris 2025-06-13 04:34:15 +01:00
parent f3c94d1dee
commit 81d0072148
3 changed files with 4 additions and 4 deletions

View File

@ -51,7 +51,7 @@ The CLI should now be discoverable as `slobs-cli`
Pass `--domain`, `--port` and `--token` as flags on the root command, for example:
```console
slobs-cli --domain 127.0.0.1 --port 59650 --token <API token> --help
slobs-cli --domain localhost --port 59650 --token <API token> --help
```
#### Environment Variables
@ -59,7 +59,7 @@ slobs-cli --domain 127.0.0.1 --port 59650 --token <API token> --help
Load the following values from your environment:
```env
SLOBS_DOMAIN=127.0.0.1
SLOBS_DOMAIN=localhost
SLOBS_PORT=59650
SLOBS_TOKEN=<API Token>
```

View File

@ -1,3 +1,3 @@
"""module for package metadata."""
__version__ = '0.9.2'
__version__ = '0.9.3'

View File

@ -11,7 +11,7 @@ from .__about__ import __version__ as version
@click.option(
'-d',
'--domain',
default='127.0.0.1',
default='localhost',
envvar='SLOBS_DOMAIN',
show_default=True,
show_envvar=True,