Skip to content

Commit 7ec481f

Browse files
committed
ddev_and_ibexa_cloud.md
1 parent 0af1a84 commit 7ec481f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/ibexa_cloud/ddev_and_ibexa_cloud.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ description: Use DDEV to run an Ibexa Cloud project locally.
66

77
Two ways are available to run an [[= product_name_cloud =]] project locally with DDEV:
88

9-
- [by using the Platform.sh's `ddev-platformsh` add-on](#with-the-ddev-platformsh-add-on)
9+
- [by using the Platform.sh's `ddev-ibexa-cloud` add-on](#with-the-ddev-ibexa-cloud-add-on)
1010
- [like other existing project, without this add-on](#without-the-platformsh-add-on).
1111

1212
!!! note
1313

1414
The following examples use [[[= product_name_cloud =]] CLI (`ibexa_cloud`)](https://cli.ibexa.co/).
1515

16-
## With the `ddev-platformsh` add-on
16+
## With the `ddev-ibexa-cloud` add-on
1717

18-
To configure the [`ddev/ddev-platformsh` add-on](https://github.com/ddev/ddev-platformsh), you need a [Platform.sh API Token](https://docs.platform.sh/administration/cli/api-tokens.html).
18+
To configure the [`ddev/ddev-ibexa-cloud` add-on](https://github.com/ddev/ddev-ibexa-cloud), you need a [Platform.sh API Token](https://docs.platform.sh/administration/cli/api-tokens.html).
1919

20-
The `ddev/ddev-platformsh` add-on configures the document root, the PHP version, the database, and the cache pool according to the [[= product_name_cloud =]] configuration.
20+
The `ddev/ddev-ibexa-cloud` add-on configures the document root, the PHP version, the database, and the cache pool according to the [[= product_name_cloud =]] configuration.
2121
About the search engine, the add-on can configure Elasticsearch but can't configure Solr.
2222
If you use Solr on [[= product_name_cloud =]] and want to add it to your DDEV stack, see [Clustering with DDEV and `ibexa/ddev-solr` add-on](clustering_with_ddev.md#solr).
2323

@@ -37,7 +37,7 @@ See [`ibexa_cloud help get`](https://docs.platform.sh/administration/cli.html#3-
3737
(Some DDEV config could be committed like in [this documentation](https://ddev.readthedocs.io/en/latest/users/extend/customization-extendibility/#extending-configyaml-with-custom-configyaml-files).)
3838
1. Sets Composer authentication by using an already existing `auth.json` file.
3939
1. Creates a `public/var` directory if it doesn't exist, to allow the creation of `public/var/.platform.installed` by Platform.sh hook script.
40-
1. Installs the `ddev/ddev-platformsh` add-on which prompts for the Platform.sh API token, project ID and environment name.
40+
1. Installs the `ddev/ddev-ibexa-cloud` add-on which prompts for the Platform.sh API token, project ID and environment name.
4141
1. Comments out the Node.js and NVM installations from the hooks copied in `.ddev/config.platformsh.yaml`.
4242
(In this file, you may have to discard other specific features like New Relic.)
4343
1. Changes `maxmemory-policy` from default `allkeys-lfu` to a [value accepted by the `RedisTagAwareAdapter`](https://github.com/symfony/cache/blob/5.4/Adapter/RedisTagAwareAdapter.php#L95).
@@ -53,7 +53,7 @@ ddev config --project-type=php --web-environment-add COMPOSER_AUTH=''
5353
echo '.ddev/' >> .gitignore
5454
mkdir -p .ddev/homeadditions/.composer && cp <path-to-an>/auth.json .ddev/homeadditions/.composer
5555
if [ ! -d public/var ]; then mkdir public/var; fi
56-
ddev get ddev/ddev-platformsh
56+
ddev get ddev/ddev-ibexa-cloud
5757
sed -i -E "s/( +)(.*nvm (install|use).*)/\1#\2/" .ddev/config.platformsh.yaml
5858
sed -i 's/maxmemory-policy allkeys-lfu/maxmemory-policy volatile-lfu/' .ddev/redis/redis.conf
5959
ddev start

0 commit comments

Comments
 (0)