diff --git a/src/portable/options.rs b/src/portable/options.rs index 11d76691..c62ef430 100644 --- a/src/portable/options.rs +++ b/src/portable/options.rs @@ -336,7 +336,7 @@ pub struct Create { /// Default user name (created during initialization and saved in /// credentials file). - #[arg(long, default_value = "edgedb")] + #[arg(long, default_value = "admin")] pub default_user: String, /// The default branch name. This defaults to 'main' on EdgeDB >=5.x; otherwise diff --git a/src/portable/project.rs b/src/portable/project.rs index 302f4676..55c266bb 100644 --- a/src/portable/project.rs +++ b/src/portable/project.rs @@ -836,7 +836,7 @@ fn do_init( installation: Some(inst), port, }; - create::bootstrap(&paths, &info, "edgedb", database)?; + create::bootstrap(&paths, &info, "admin", database)?; match create::create_service(&info) { Ok(()) => {} Err(e) => {