wasmerio/wasmer · error
No app configuration file found in path {}.
Error message
No app configuration file found in path {}. What it means
Error "No app configuration file found in path {}." thrown in wasmerio/wasmer.
Source
Thrown at lib/cli/src/commands/app/secrets/utils/mod.rs:163
if let Some(id) = id {
if !quiet {
if let Some(owner) = &app.owner {
eprintln!(
"Managing secrets related to app {} ({owner}).",
app.name.context("App name has to be specified")?.bold()
);
} else {
eprintln!(
"Managing secrets related to app {}.",
app.name.context("App name has to be specified")?.bold()
);
}
}
return Ok(id);
}
} else if let Some(path) = app_dir_path {
anyhow::bail!(
"No app configuration file found in path {}.",
path.display()
)
}
if non_interactive {
anyhow::bail!("No app id given. Provide one using the `--app` flag.")
} else {
let id = prompt_app_ident("Enter the name of the app")?;
let app = id.resolve(client).await?;
Ok(app.id.into_inner())
}
}
View on GitHub (pinned to 8c4b9ee9d3)
When it happens
Trigger: Thrown at lib/cli/src/commands/app/secrets/utils/mod.rs:163 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of wasmerio/wasmer@8c4b9ee9d3 (2026-09-01).
Data as JSON: /api/errors/e574cb9b45f149d1.
Report an issue: GitHub.