Skip to content
Closed
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 crates/cli/src/subcommands/dev.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ pub fn cli() -> Command {
.about("Start development mode with auto-regenerate client module bindings, auto-rebuild, and auto-publish on file changes.")
.arg(
Arg::new("database")
.long("database")
.required(false)
.help("The database name/identity to publish to (optional, will prompt if not provided)"),
)
.arg(
Expand Down Expand Up @@ -221,7 +221,7 @@ pub async fn exec(mut config: Config, args: &ArgMatches) -> Result<(), anyhow::E
println!(
"{} {}",
"Tip:".yellow().bold(),
format!("Use `--database {}` to skip this question next time", database_name).dimmed()
format!("Use `spacetime dev {}` to skip this question next time", database_name).dimmed()
);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ Run `spacetime help describe` for more detailed information.

Start development mode with auto-regenerate client module bindings, auto-rebuild, and auto-publish on file changes.

**Usage:** `spacetime dev [OPTIONS]`
**Usage:** `spacetime dev [OPTIONS] [database]`

###### **Options:**

Expand Down