Skip to content
Open
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
14 changes: 14 additions & 0 deletions products/paas/shopware/guides/clone-application.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,20 @@ bin/console user:change-password admin

Follow the prompts to set a new password for the admin user.

### Reindex OpenSearch

If your shop has OpenSearch enabled, you will need to reindex after cloning. Open an exec session:

```shell
sw-paas exec --new
```

Once you're in the session, run the following command to reindex:

```shell
bin/console dal:refresh:index --use-queue
```

### Update domain in sales channel

The cloned application will have the same domain configuration as the source application. You need to update the domain in the sales channel to match the cloned application's domain.
Expand Down
Loading