Skip to content
Merged
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
14 changes: 13 additions & 1 deletion examples/tutorials/deploy_command.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
last_modified: 2025-09-29
last_modified: 2026-06-18
title: "Deploy an app with the deno deploy command"
description: "Step-by-step tutorial for using the deno deploy CLI command to create and deploy your first application to Deno Deploy."
url: /examples/deploy_command_tutorial/
Expand Down Expand Up @@ -176,6 +176,18 @@ deno deploy

Select the appropriate options in the terminal when prompted.

By default the CLI prompts you for an application name. You can set it yourself
with the `--app` flag instead (this is the equivalent of the project name in
Deno Deploy Classic):

```bash
deno deploy --app my-app-name
```

The application name is used in your app's default URL. See the
[`deno deploy` reference](/runtime/reference/cli/deploy/) for all available
flags, including `--org` and `--prod`.

The deployment process will:

1. Make a tarball of your application code
Expand Down
Loading