Skip to content

Commit 54542f3

Browse files
fixing service name fstring
1 parent 585f10f commit 54542f3

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,3 +98,8 @@ No in-progress managed jobs. (See: pymcs jobs -h)
9898
Services
9999
No live services. (See: pymcs serve -h)
100100
```
101+
102+
103+
## Using pymcs to deploy custom software.
104+
105+
Using configuration files allows you to install custom software on your cloud nodes. Due to `ssh agent` forwarding, you are able to `git clone` even private repositories on remote infrastructure without sharing any credentials as text with the machine. This assumes your laptop has SSH access to the private repo.

pixi.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/pymc_server/commands/launch_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def launch(
168168
sky.optimize(dag)
169169

170170

171-
click.secho(f"service_name, {"service_name"}:", fg='cyan')
171+
click.secho(f"service_name, {service_name}:", fg='cyan')
172172

173173
if service_name is None:
174174
service_name = serve_lib.generate_service_name()

0 commit comments

Comments
 (0)