Skip to content

Commit fc6f47f

Browse files
committed
Simplify installation. Ask users to configure worker manually.
1 parent e49bb8c commit fc6f47f

File tree

2 files changed

+5
-74
lines changed

2 files changed

+5
-74
lines changed

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,12 @@ This repository is a recipe for DDEV to have a local worker that will allow taki
1010

1111
Add this addon as `ddev get diffywebsite/ddev-diffy`.
1212

13-
Register an account in Diffy and create an API key. While installation of the addon you will be asked for API KEY and PROJECT ID. Please provide them so configuration is saved.
13+
Register an account in Diffy and create an [API key](https://stage.diffy.website/#/keys).
14+
15+
Once you have your container ready after `ddev restart` we need to provide API key and project ID to `.env` file. For that go to `.ddev/diffy-worker`, copy existing example file `cp .env.example .env` and edit `.env` file to provide your credentials.
1416

1517
To run the screenshots do `ddev screenshot`. It will produce a URL to your screenshots uploaded to Diffy. Next you can compare them to your any other sets (production, staging, baseline etc.).
1618

19+
Remember to check our [documentation page](https://docs.diffy.website/features/local-development/ddev-add-on).
20+
1721
**Contributed and maintained by [@ygerasimov](https://github.com/ygerasimov)**

install.yaml

-73
Original file line numberDiff line numberDiff line change
@@ -2,46 +2,6 @@
22

33
name: ddev-diffy
44

5-
pre_install_actions:
6-
# Get DIFFY_API_KEY from user if we don't have it yet
7-
- |
8-
#ddev-nodisplay
9-
if ( {{ contains "DIFFY_API_KEY" (list .DdevGlobalConfig.web_environment | toString) }} || {{ contains "DIFFY_API_KEY" (list .DdevProjectConfig.web_environment | toString) }} ); then
10-
echo "Using existing DIFFY_API_KEY."
11-
else
12-
printf "\n\nPlease enter your Diffy API key: "
13-
fi
14-
15-
- |
16-
#ddev-nodisplay
17-
#ddev-description:Setting DIFFY_API_KEY
18-
if !( {{ contains "DIFFY_API_KEY" (list .DdevGlobalConfig.web_environment | toString) }} || {{ contains "DIFFY_API_KEY" (list .DdevProjectConfig.web_environment | toString) }} ); then
19-
read token
20-
# Put the token into the global web environment
21-
ddev config global --web-environment-add DIFFY_API_KEY=${token}
22-
echo "DIFFY_API_KEY set globally"
23-
fi
24-
25-
- |
26-
#ddev-nodisplay
27-
# echo 'list ddevprojectconfig.web_environment={{ list .DdevProjectConfig.web_environment | toString }}'
28-
if ({{ contains "DIFFY_PROJECT_ID=" (list .DdevProjectConfig.web_environment | toString) }} ); then
29-
echo "Using existing DIFFY_PROJECT_ID from project config.yaml."
30-
else
31-
printf "\n\nPlease enter your Diffy project ID (like '123123'): "
32-
fi
33-
34-
- |
35-
#ddev-nodisplay
36-
#ddev-description:Set DIFFY_PROJECT_ID
37-
if !( {{ contains "DIFFY_PROJECT_ID" (list .DdevProjectConfig.web_environment | toString) }} ); then
38-
read diffy_project_id
39-
echo "diffy_project_id = '${diffy_project_id}'"
40-
# Put the diffy_project_id in to the project's diffy environment
41-
ddev config --web-environment-add DIFFY_PROJECT_ID=${diffy_project_id}
42-
echo "DIFFY_PROJECT_ID set to ${diffy_project_id}"
43-
fi
44-
455
project_files:
466
- docker-compose.diffy.yaml
477
- commands/diffy/screenshot
@@ -55,39 +15,6 @@ global_files:
5515
post_install_actions:
5616
- rm -rf diffy-worker && mkdir diffy-worker
5717
- docker run -it --rm -v ./diffy-worker:/diffy-worker --user $DDEV_UID:$DDEV_GID ddev/ddev-utilities bash -c "cd /diffy-worker && wget -qO- https://github.com/DiffyWebsite/diffy-worker/archive/refs/heads/main.tar.gz | tar xz --strip-components=1"
58-
- |
59-
#ddev-nodisplay
60-
#ddev-description:Create .env file
61-
DIFFY_API_KEY='{{- $foundDiffApiKey := false -}}
62-
{{- range .DdevGlobalConfig.web_environment }}
63-
{{- if not $foundDiffApiKey }}
64-
{{- $keyVal := splitList "=" . }}
65-
{{- if eq (index $keyVal 0) "DIFFY_API_KEY" }}
66-
{{- index $keyVal 1 -}}
67-
{{- $foundDiffApiKey = true -}}
68-
{{- end }}
69-
{{- end }}
70-
{{- end }}'
71-
72-
DIFFY_PROJECT_ID='{{- $foundDiffProjectId := false -}}
73-
{{- range .DdevProjectConfig.web_environment }}
74-
{{- if not $foundDiffProjectId }}
75-
{{- $keyVal := splitList "=" . }}
76-
{{- if eq (index $keyVal 0) "DIFFY_PROJECT_ID" }}
77-
{{- index $keyVal 1 -}}
78-
{{- $foundDiffProjectId = true -}}
79-
{{- end }}
80-
{{- end }}
81-
{{- end }}'
82-
83-
cat <<-EOF >diffy-worker/.env
84-
# #ddev-generated
85-
NODE_ENV=dev
86-
DEBUG=true
87-
DIFFY_PROJECT_ID=${DIFFY_PROJECT_ID}
88-
DIFFY_API_KEY=${DIFFY_API_KEY}
89-
90-
EOF
9118

9219
# Shell actions that can be done during removal of the add-on
9320
removal_actions:

0 commit comments

Comments
 (0)