Skip to content
Merged
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 src/fastapi_cloud_cli/commands/apps/create.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def create_app(
"--directory",
help=(
"Relative app directory containing the pyproject.toml "
"(for example: src or backend)."
"(for example: backend or webserver)."
),
),
] = None,
Expand Down Expand Up @@ -156,7 +156,7 @@ def create_app(
"invalid_input",
f"Invalid app directory: {e}",
hint=(
"Pass a relative app directory such as `src` or `backend`; "
"Pass a relative app directory such as `backend` or `webserver`; "
"use --path with --link to choose a local filesystem path."
),
)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cli_apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ def test_creates_app_json_rejects_invalid_directory(logged_in_cli: None) -> None
"code": "invalid_input",
"message": ("Invalid app directory: must be a relative path, not absolute"),
"hint": (
"Pass a relative app directory such as `src` or `backend`; "
"Pass a relative app directory such as `backend` or `webserver`; "
"use --path with --link to choose a local filesystem path."
),
}
Expand Down
Loading