Skip to content
Merged
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
7 changes: 3 additions & 4 deletions docs/getting_started/install_with_ddev.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ mkdir my-ddev-project && cd my-ddev-project
Next, configure your DDEV environment with the following command:

```bash
ddev config --project-type=php --php-version 8.1 --nodejs-version 18 --docroot=public --create-docroot
ddev config --project-type=php --php-version 8.1 --nodejs-version 18 --docroot=public
```

This command sets the project type to PHP, the PHP version to 8.1, the document root to `public` directory, and creates the document root.
Expand Down Expand Up @@ -92,7 +92,7 @@ Now, configure the database connection for your [[= product_name =]] project. De
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. You can do this by running the following command:

```bash
ddev config --mutagen-enabled
ddev config --performance-mode=mutagen
```

See [DDEV performance documentation](https://ddev.readthedocs.io/en/latest/users/install/performance/) for more.
Expand All @@ -103,7 +103,7 @@ By default, DDEV uses ports 80 and 443.
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:

```bash
ddev config --http-port=8080 --https-port=8443
ddev config --router-http-port=8080 --router-https-port=8443
```

### 3. Start DDEV
Expand Down Expand Up @@ -401,7 +401,6 @@ Some DDEV configs can be shared among developers. For example, a common `.ddev/c
Compared to running a clean install like described in [Installation steps](#installation), you can proceed as follows:

- 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.
- In [2. Configure DDEV / Configure PHP version and document root](#configure-php-version-and-document-root), don't create the Document root, remove the `--create-docroot` option.
- In [5. Create [[= product_name =]] project](#5-create-project), use only `ddev composer install` instead of `ddev composer create`.
- 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).

Expand Down
Loading