Skip to content

Commit de98ae9

Browse files
authored
Move drud->ddev references (#17)
1 parent 9b96fb3 commit de98ae9

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ defaults:
1919
shell: bash
2020

2121
env:
22-
NIGHTLY_DDEV_PR_URL: "https://nightly.link/drud/ddev/actions/runs/1720215802/ddev-linux-amd64.zip"
22+
NIGHTLY_DDEV_PR_URL: "https://nightly.link/ddev/ddev/actions/runs/1720215802/ddev-linux-amd64.zip"
2323
# Allow ddev get to use a github token to prevent rate limiting by tests
2424
DDEV_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2525

@@ -49,15 +49,15 @@ jobs:
4949
5050
- name: Use ddev stable
5151
if: matrix.ddev_version == 'stable'
52-
run: brew install drud/ddev/ddev
52+
run: brew install ddev/ddev/ddev
5353

5454
- name: Use ddev edge
5555
if: matrix.ddev_version == 'edge'
56-
run: brew install drud/ddev-edge/ddev
56+
run: brew install ddev/ddev-edge/ddev
5757

5858
- name: Use ddev HEAD
5959
if: matrix.ddev_version == 'HEAD'
60-
run: brew install --HEAD drud/ddev/ddev
60+
run: brew install --HEAD ddev/ddev/ddev
6161

6262
- name: Use ddev PR
6363
if: matrix.ddev_version == 'PR'

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
[![tests](https://github.com/drud/ddev-drupal9-solr/actions/workflows/tests.yml/badge.svg)](https://github.com/drud/ddev-drupal9-solr/actions/workflows/tests.yml)
1+
[![tests](https://github.com/ddev/ddev-drupal9-solr/actions/workflows/tests.yml/badge.svg)](https://github.com/ddev/ddev-drupal9-solr/actions/workflows/tests.yml)
22

33
## What is this?
44

5-
This repository allows you to quickly install Apache Solr for Drupal 9+ into a [Ddev](https://ddev.readthedocs.io) project using just `ddev get drud/ddev-drupal9-solr`. It follows the [Setting up Solr (single core) - the classic way](https://git.drupalcode.org/project/search_api_solr/-/blob/4.x/README.md#setting-up-solr-single-core-the-classic-way) recipe.
5+
This repository allows you to quickly install Apache Solr for Drupal 9+ into a [Ddev](https://ddev.readthedocs.io) project using just `ddev get ddev/ddev-drupal9-solr`. It follows the [Setting up Solr (single core) - the classic way](https://git.drupalcode.org/project/search_api_solr/-/blob/4.x/README.md#setting-up-solr-single-core-the-classic-way) recipe.
66

77
## Installation on Drupal 9+
88

9-
1. `ddev get drud/ddev-drupal9-solr && ddev restart`
9+
1. `ddev get ddev/ddev-drupal9-solr && ddev restart`
1010
1. You may need to install the relevant Drupal requirements: `ddev composer require drush/drush:* drupal/search_api_solr`
1111
1. Enable the `search_api_solr` module either using the web interface or `ddev drush en -y search_api_solr`
1212
1. Create a search_api server at `admin/config/search/search-api` -> "Add server"
@@ -52,4 +52,4 @@ services:
5252

5353
## Caveats
5454

55-
* This recipe won't work with versions of Solr before `solr:8`, and Acquia and Pantheon.io hosting require versions from 3 to 7. You'll want to see the [contributed recipes](https://github.com/drud/ddev-contrib) for older versions of solr.
55+
* This recipe won't work with versions of Solr before `solr:8`, and Acquia and Pantheon.io hosting require versions from 3 to 7. You'll want to see the [contributed recipes](https://github.com/ddev/ddev-contrib) for older versions of solr.

tests/test.bats

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ teardown() {
2525
@test "install from directory" {
2626
set -eu -o pipefail
2727
cd ${TESTDIR} || ( printf "unable to cd to ${TESTDIR}\n" && exit 1 )
28-
echo "# ddev get drud/ddev-drupal9-solr with project ${PROJNAME} in ${TESTDIR} ($(pwd))" >&3
28+
echo "# ddev get ddev/ddev-drupal9-solr with project ${PROJNAME} in ${TESTDIR} ($(pwd))" >&3
2929
ddev get ${DIR} >/dev/null
3030
ddev restart >/dev/null
3131
status=$(ddev exec 'drush sapi-sl --format=json | jq -r .default_solr_server.status')
@@ -36,8 +36,8 @@ teardown() {
3636
@test "install from release" {
3737
set -eu -o pipefail
3838
cd ${TESTDIR} || ( printf "unable to cd to ${TESTDIR}\n" && exit 1 )
39-
echo "# ddev get drud/ddev-drupal9-solr with project ${PROJNAME} in ${TESTDIR} ($(pwd))" >&3
40-
ddev get drud/ddev-drupal9-solr >/dev/null
39+
echo "# ddev get ddev/ddev-drupal9-solr with project ${PROJNAME} in ${TESTDIR} ($(pwd))" >&3
40+
ddev get ddev/ddev-drupal9-solr >/dev/null
4141
ddev restart >/dev/null
4242
status=$(ddev exec 'drush sapi-sl --format=json | jq -r .default_solr_server.status')
4343
[ "${status}" = "enabled" ]

0 commit comments

Comments
 (0)