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
2 changes: 1 addition & 1 deletion src/pages/guides/app_builder_guides/storage/database.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ application:
region: emea
```

When the application is deployed using `aio app deploy` a database will be provisioned in the specified region unless it is already present.
When the application is deployed using `aio app deploy` a database will be provisioned in the specified region unless it is already present. Declarative provisioning does not occur during `aio app run` or `aio app dev` commands, so the database will need to be provisioned manually using the AIO CLI for local development.

To provision a database using the AIO CLI, the following command can be used:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,7 @@ Likely causes include:

- A known issue in auto-provisioning logic in older `@adobe/aio-cli-plugin-app` / `@adobe/aio-cli-plugin-app-storage` versions.
- Region misconfiguration in app.config.yaml.
- Running the app locally through `aio app run` or `aio app dev` without manually provisioning a database first.

To fix this error:

Expand Down
Loading