Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/docs/content/features/pipeline.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -405,8 +405,8 @@ Usage:
Flags:
--archive-file-path string If set, zCLI creates a tar.gz archive with the application code in the required path relative
to the working directory. By default, no archive is created.
--deploy-git-folder Sets a custom path to the zerops.yaml file relative to the working directory. By default zCLI
looks for zerops.yaml in the working directory.
--deploy-git-folder If set, the .git folder is also uploaded with the deploy. By default, the .git folder
is ignored.
-h, --help the service deploy command.
--project-id string If you have access to more than one project, you must specify the project ID for which the
command is to be executed.
Expand Down
16 changes: 16 additions & 0 deletions apps/docs/content/references/import.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -401,6 +401,22 @@ This example includes all possible configuration options for Zerops services. No
<td className="w-fit">string (URL)</td>
<td className="w-fit">
A URL of a Github or Gitlab repository used for a one-time build of your service.
The repository must be publicly accessible — a private repository fails at clone
time (the build ends FAILED with no build log). Use the plain repository URL
without a trailing `.git` suffix, which fails the same way.
</td>
</tr>
<tr>
<td className="w-fit font-semibold">startWithoutCode</td>
<td className="w-fit">boolean</td>
<td className="w-fit">
Default: `false`<br/>
Set `true` to start a runtime service's containers without waiting for a first
deploy. Useful when the code arrives later (a subsequent pipeline run), or when
you want a live container to [SSH](/references/networking/ssh) into and play
around in — once your setup steps work, version them into
[`run.prepareCommands`](/zerops-yaml/specification#preparecommands--1) so they
persist across container replacements.
</td>
</tr>
<tr>
Expand Down
Loading