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

Diff for: README.md

+5
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.

Diff for: pixi.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: src/pymc_server/commands/launch_cli.py

+1-1
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)