Skip to content

Commit

Permalink
docs: update ddev get to ddev add-on get in readme (#51)
Browse files Browse the repository at this point in the history
* docs: update `ddev get` to `ddev add-on get` in readme

* Update README.md

---------

Co-authored-by: Moshe Weitzman <[email protected]>
  • Loading branch information
GuySartorelli and weitzman authored Oct 24, 2024
1 parent 043f5a9 commit f92399e
Showing 1 changed file with 23 additions and 5 deletions.
28 changes: 23 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,29 @@ This service can be used with any project type. The examples below are Drupal-sp

## Install/Update

1. `ddev get ddev/ddev-selenium-standalone-chrome`
2. `ddev restart`
3. Optional. Update the provided .ddev/config.selenium-standalone-chrome.yaml as you see fit(and remove the #ddev-generated line). You can also just override lines in your .ddev/config.yaml
4. Optional. Check config.selenium-standalone-chrome.yaml and docker-compose.selenium-chrome.yaml into your source control.
5. Update by re-running `ddev get ddev/ddev-selenium-standalone-chrome`.
For DDEV v1.23.5 or above run

```sh
ddev add-on get ddev/ddev-selenium-standalone-chrome
```

For earlier versions of DDEV run

```sh
ddev get ddev/ddev-selenium-standalone-chrome
```

Then restart your project

```sh
ddev restart
```

### Optional steps

1. Update the provided `.ddev/config.selenium-standalone-chrome.yaml` as you see fit (and remove the #ddev-generated line). You can also just override lines in your `.ddev/config.yaml`
1. Check `config.selenium-standalone-chrome.yaml` and `docker-compose.selenium-chrome.yaml` into your source control.
1. Update by re-running `ddev add-on get ddev/ddev-selenium-standalone-chrome`.

## Use

Expand Down

0 comments on commit f92399e

Please sign in to comment.