You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can also use other versions of MariaDB, MySQL or PostgreSQL.
56
-
See [DDEV database types documentation](https://ddev.readthedocs.io/en/latest/users/extend/database-types/) for available version ranges.
56
+
See [DDEV database types documentation](https://docs.ddev.com/en/stable/users/extend/database-types/) for available version ranges.
57
57
58
58
#### Configure database connection
59
59
@@ -90,19 +90,19 @@ Depending on your database of choice (MySQL or PostgreSQL), use the appropriate
90
90
91
91
#### Enable Mutagen (optional)
92
92
93
-
If you're using macOS or Windows, you might want to enable [Mutagen](https://ddev.readthedocs.io/en/latest/users/install/performance/#mutagen) to improve performance.
93
+
If you're using macOS or Windows, you might want to enable [Mutagen](https://docs.ddev.com/en/stable/users/install/performance/#mutagen) to improve performance.
94
94
You can do this by running the following command:
95
95
96
96
```bash
97
97
ddev config --performance-mode=mutagen
98
98
```
99
99
100
-
See [DDEV performance documentation](https://ddev.readthedocs.io/en/latest/users/install/performance/) for more.
100
+
See [DDEV performance documentation](https://docs.ddev.com/en/stable/users/install/performance/) for more.
101
101
102
102
#### Change port mapping (optional)
103
103
104
104
By default, DDEV uses ports 80 and 443.
105
-
You can [set different ports](https://ddev.readthedocs.io/en/latest/users/usage/troubleshooting/#method-2-fix-port-conflicts-by-configuring-your-project-to-use-different-ports) with a command like the following:
105
+
You can [set different ports](https://docs.ddev.com/en/stable/users/usage/troubleshooting/#method-2-fix-port-conflicts-by-configuring-your-project-to-use-different-ports) with a command like the following:
@@ -187,17 +187,17 @@ DDEV offers several ways to get the same result, offering different levels of fl
187
187
188
188
!!! tip
189
189
190
-
Learn more about the [DDEV commands](https://ddev.readthedocs.io/en/latest/users/usage/commands/):
190
+
Learn more about the [DDEV commands](https://docs.ddev.com/en/stable/users/usage/commands/):
191
191
192
-
- run [`ddev --help`](https://ddev.readthedocs.io/en/latest/users/usage/cli/#using-the-ddev-command) to list all commands
193
-
- run [`ddev help <command>`](https://ddev.readthedocs.io/en/latest/users/usage/commands/#help) to get usage details about a specific command
192
+
- run [`ddev --help`](https://docs.ddev.com/en/stable/users/usage/cli/#using-the-ddev-command) to list all commands
193
+
- run [`ddev help <command>`](https://docs.ddev.com/en/stable/users/usage/commands/#help) to get usage details about a specific command
194
194
195
-
Learn more about DDEV configuration from [`ddev config` command documentation](https://ddev.readthedocs.io/en/latest/users/usage/commands/#config) and [advanced configuration files documentation](https://ddev.readthedocs.io/en/latest/users/configuration/config/).
195
+
Learn more about DDEV configuration from [`ddev config` command documentation](https://docs.ddev.com/en/stable/users/usage/commands/#config) and [advanced configuration files documentation](https://docs.ddev.com/en/stable/users/configuration/config/).
196
196
197
197
198
198
### Using `auth.json`
199
199
200
-
An `auth.json` file can be used for one project, or globally for all projects, with the [DDEV `homeaddition` feature](https://ddev.readthedocs.io/en/latest/users/extend/in-container-configuration/).
200
+
An `auth.json` file can be used for one project, or globally for all projects, with the [DDEV `homeaddition` feature](https://docs.ddev.com/en/stable/users/extend/in-container-configuration/).
201
201
202
202
For example, you can copy an `auth.json` file to a DDEV project: `cp <path-to-an>/auth.json .ddev/homeadditions/.composer`
203
203
@@ -368,7 +368,7 @@ To run an existing project, you need to:
368
368
1. Install dependencies packages with Composer.
369
369
1. Populate the contents, which could mean:
370
370
- getting a clean database with `ddev php bin/console ibexa:install` and adding some data with [Ibexa data migration](importing_data.md), or
371
-
- injecting a dump with [`ddev import-db`](https://ddev.readthedocs.io/en/latest/users/usage/commands/#import-db) and copying related binary files into `public/var`.
371
+
- injecting a dump with [`ddev import-db`](https://docs.ddev.com/en/stable/users/usage/commands/#import-db) and copying related binary files into `public/var`.
372
372
373
373
The following examples run an already [version-controlled project](install_ibexa_dxp.md#add-project-to-version-control) and have the right content structure (but no content):
374
374
@@ -397,17 +397,17 @@ ddev launch
397
397
```
398
398
399
399
Notice that the example adds the whole `.ddev/` directory to `.gitignore`, but you can also version parts of it.
400
-
Some DDEV configs can be shared among developers. For example, a common `.ddev/config.yaml` can be committed for everyone and [locally extended or overridden](https://ddev.readthedocs.io/en/latest/users/extend/customization-extendibility/#extending-configyaml-with-custom-configyaml-files).
400
+
Some DDEV configs can be shared among developers. For example, a common `.ddev/config.yaml` can be committed for everyone and [locally extended or overridden](https://docs.ddev.com/en/stable/users/extend/customization-extendibility/#extending-configyaml-with-custom-configyaml-files).
401
401
402
402
Compared to running a clean install like described in [Installation steps](#installation), you can proceed as follows:
403
403
404
404
- In [1. Create a DDEV project directory](#1-create-a-ddev-project-directory), you can use an existing directory that contains an [[= product_name =]] project instead of creating an empty directory.
405
405
- In [5. Create [[= product_name =]] project](#5-create-project), use only `ddev composer install` instead of `ddev composer create-project`.
406
-
- Populate the database with [Ibexa data migration](importing_data.md) or [`ddev import-db`](https://ddev.readthedocs.io/en/latest/users/usage/commands/#import-db).
406
+
- Populate the database with [Ibexa data migration](importing_data.md) or [`ddev import-db`](https://docs.ddev.com/en/stable/users/usage/commands/#import-db).
407
407
408
408
### Hostnames and domains
409
409
410
-
If the local project needs to answer to real production domains (for example, to use the existing [hostname to SiteAccess](siteaccess_matching.md#maphost) or [hostname element to SiteAccess](../multisite/siteaccess/siteaccess_matching.md#hostelement) mappings), you can use [additional hostnames](https://ddev.readthedocs.io/en/latest/users/extend/additional-hostnames/).
410
+
If the local project needs to answer to real production domains (for example, to use the existing [hostname to SiteAccess](siteaccess_matching.md#maphost) or [hostname element to SiteAccess](../multisite/siteaccess/siteaccess_matching.md#hostelement) mappings), you can use [additional hostnames](https://docs.ddev.com/en/stable/users/extend/additional-hostnames/).
411
411
412
412
!!! caution
413
413
@@ -432,4 +432,4 @@ If you want to fully remove the project:
432
432
433
433
If [additional hostnames](#hostnames-and-domains) have been used, you must clean the hosts file.
434
434
435
-
To learn more about removing all projects at once or DDEV itself, see [Uninstalling DDEV](https://ddev.readthedocs.io/en/latest/users/usage/uninstall/).
435
+
To learn more about removing all projects at once or DDEV itself, see [Uninstalling DDEV](https://docs.ddev.com/en/stable/users/usage/uninstall/).
Copy file name to clipboardExpand all lines: docs/ibexa_cloud/ddev_and_ibexa_cloud.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ See [`ibexa_cloud help get`](https://fixed.docs.upsun.com/administration/cli.htm
40
40
and application name (for example, `app` from `name: app` line in `.platform.app.yaml` file).
41
41
1. Configures `ibexa_cloud` command token. See [Create an API token](https://fixed.docs.upsun.com/administration/cli/api-tokens.html#2-create-an-api-token) for more information.
42
42
1. Ignores `.ddev/` directory from Git.
43
-
(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).)
43
+
(Some DDEV config could be committed like in [this documentation](https://docs.ddev.com/en/stable/users/extend/customization-extendibility/#extending-configyaml-with-custom-configyaml-files).)
44
44
1. Sets Composer authentication by using an already existing `auth.json` file.
45
45
1. Installs the `ddev/ddev-upsun` add-on which prompts for the Upsun API token, project ID and environment name.
46
46
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).
@@ -81,11 +81,11 @@ The following sequence of commands:
81
81
(Replace `<project-ID>` with the hash of your own project. See [`ibexa_cloud help get`](https://fixed.docs.upsun.com/administration/cli.html#3-use) for options like selecting another environment).
82
82
1. Configures a new DDEV project.
83
83
1. Ignores `.ddev/` directory from Git.
84
-
(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).)
84
+
(Some DDEV config could be committed like in [this documentation](https://docs.ddev.com/en/stable/users/extend/customization-extendibility/#extending-configyaml-with-custom-configyaml-files).)
85
85
1. Starts the DDEV project.
86
86
1. Sets Composer authentication.
87
87
1.[Gets the database content from Upsun](https://fixed.docs.upsun.com/add-services/mysql.html#exporting-data).
88
-
1.[Imports this database content into DDEV project's database](https://ddev.readthedocs.io/en/latest/users/usage/database-management/#database-imports).
88
+
1.[Imports this database content into DDEV project's database](https://docs.ddev.com/en/stable/users/usage/database-management/#database-imports).
89
89
1.[Downloads the Upsun public/var locally](https://fixed.docs.upsun.com/development/file-transfer.html#transfer-a-file-from-a-mount) to have the content binary files.
90
90
1. Install the dependencies and run post-install scripts.
91
91
1. Displays information about the project services.
Copy file name to clipboardExpand all lines: docs/infrastructure_and_maintenance/clustering/clustering_with_ddev.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,11 +20,11 @@ The `ddev config --php-version` option should set the same PHP version as the pr
20
20
21
21
!!! tip
22
22
23
-
- [`ddev describe`](https://ddev.readthedocs.io/en/latest/users/usage/commands/#describe) displays a cluster summary that include accesses from inside and outside DDEV services
24
-
- [`ddev ssh`](https://ddev.readthedocs.io/en/latest/users/usage/commands/#ssh) opens a terminal inside a service
25
-
- [`ddev exec`](https://ddev.readthedocs.io/en/latest/users/usage/commands/#exec) executes a command inside a service
23
+
- [`ddev describe`](https://docs.ddev.com/en/stable/users/usage/commands/#describe) displays a cluster summary that include accesses from inside and outside DDEV services
24
+
- [`ddev ssh`](https://docs.ddev.com/en/stable/users/usage/commands/#ssh) opens a terminal inside a service
25
+
- [`ddev exec`](https://docs.ddev.com/en/stable/users/usage/commands/#exec) executes a command inside a service
26
26
27
-
Discover more commands in [DDEV documentation](https://ddev.readthedocs.io/en/latest/users/usage/commands/).
27
+
Discover more commands in [DDEV documentation](https://docs.ddev.com/en/stable/users/usage/commands/).
28
28
29
29
To run an [[= product_name_cloud =]] project locally, you may refer to [DDEV and Ibexa Cloud](ddev_and_ibexa_cloud.md) instead.
Copy file name to clipboardExpand all lines: docs/release_notes/ibexa_dxp_v4.6.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1668,7 +1668,7 @@ For more information, see [[[= product_name_connect =]] scenario block](https://
1668
1668
1669
1669
#### DDEV
1670
1670
1671
-
[[[= product_name =]] can officially be run on DDEV](https://ddev.readthedocs.io/en/latest/users/quickstart/#ibexa-dxp).
1671
+
[[[= product_name =]] can officially be run on DDEV](https://docs.ddev.com/en/stable/users/quickstart/#ibexa-dxp).
1672
1672
1673
1673
For more information, see the [DDEV guide](https://doc.ibexa.co/en/master/getting_started/install_with_ddev/), which offers a step-by-step walkthrough for installing [[= product_name =]].
0 commit comments