steve-cli 0.3.6__tar.gz → 0.3.7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: steve-cli
3
- Version: 0.3.6
3
+ Version: 0.3.7
4
4
  Summary: A simple CLI tool to run jobs from jobs.yaml with proper environment setup
5
5
  Author: Frank
6
6
  License: MIT
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
5
5
 
6
6
  [project]
7
7
  name = "steve-cli"
8
- version = "0.3.6"
8
+ version = "0.3.7"
9
9
  description = "A simple CLI tool to run jobs from jobs.yaml with proper environment setup"
10
10
  readme = "README.md"
11
11
  license = {text = "MIT"}
@@ -319,6 +319,10 @@ def apps_list(apps_file: Optional[Path]):
319
319
  if command:
320
320
  click.echo(f" Command: {click.style(' '.join(command), fg='cyan')}")
321
321
  click.echo(f" Port: {click.style(str(port), fg='magenta')}")
322
+ if pid:
323
+ uf = _url_file(name)
324
+ url = uf.read_text().strip() if uf.exists() else f'http://localhost:{port}'
325
+ click.echo(f" URL: {click.style(url, fg='cyan')}")
322
326
  if env_vars:
323
327
  click.echo(f" Environment: {click.style(f'{len(env_vars)} variables', fg='green')}")
324
328
  click.echo()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: steve-cli
3
- Version: 0.3.6
3
+ Version: 0.3.7
4
4
  Summary: A simple CLI tool to run jobs from jobs.yaml with proper environment setup
5
5
  Author: Frank
6
6
  License: MIT
File without changes
File without changes