From 9ad37f494a38f2a0e8ef34708e76798d0d8e768e Mon Sep 17 00:00:00 2001 From: developerjamiu Date: Wed, 16 Sep 2026 09:24:59 +0100 Subject: [PATCH] docs: Add intros for the build and storage command pages --- cloud_docs/reference/cli/commands/build/_build.md | 7 +++++++ cloud_docs/reference/cli/commands/storage/_storage.md | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/cloud_docs/reference/cli/commands/build/_build.md b/cloud_docs/reference/cli/commands/build/_build.md index e69de29b..49555d1c 100644 --- a/cloud_docs/reference/cli/commands/build/_build.md +++ b/cloud_docs/reference/cli/commands/build/_build.md @@ -0,0 +1,7 @@ +# scloud build + +The `scloud build` commands cover the Cloud build stage of a deploy: reading a deployment's build log and managing the secrets the build can use. Build-time errors surface in the build log, not in the runtime logs that `scloud log` fetches. + +Build secrets cover credentials the build needs and your source code shouldn't carry. See [Private dependencies](/cloud/reference/private-dependencies) for the setup that uses them, and [Passwords, secrets, and environment variables](/cloud/concepts/passwords-secrets-env-vars) for the values your server reads at runtime. + +For where the build sits in the deploy lifecycle, see [Deployments](/cloud/concepts/deployments). To work through a failed build step by step, see [Recover from a failed deploy](/cloud/guides/recover-from-a-failed-deploy). diff --git a/cloud_docs/reference/cli/commands/storage/_storage.md b/cloud_docs/reference/cli/commands/storage/_storage.md index e69de29b..0d36753c 100644 --- a/cloud_docs/reference/cli/commands/storage/_storage.md +++ b/cloud_docs/reference/cli/commands/storage/_storage.md @@ -0,0 +1,7 @@ +# scloud storage + +The `scloud storage` commands manage your project's storages and the files in them. Your app uploads those files while it runs. From the terminal you can list what users uploaded, download a file to debug it, or upload one yourself. + +Decide who may read a storage before you create it, because that choice cannot be changed later. + +For how your server connects to these storages, see [File uploads](/concepts/endpoints-and-apis/file-uploads#configure-a-storage-provider) in the framework documentation.