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
# Consider using `ddev get platformsh/ddev-platformsh` (https://github.com/platformsh/ddev-platformsh) for more
5
+
# complete platform integration.
6
+
7
+
# To use this configuration,
8
+
9
+
# 1. Check out the site from platform.sh and then configure it with `ddev config`. You'll want to use `ddev start` and make sure the basic functionality is working.
10
+
# 2. Obtain and configure an API token.
11
+
# a. Login to the Platform.sh Dashboard and go to Account->API Tokens to create an API token for ddev to use.
12
+
# b. Add the API token to the `web_environment` section in your global ddev configuration at ~/.ddev/global_config.yaml:
13
+
# ```yaml
14
+
# web_environment:
15
+
# - PLATFORMSH_CLI_TOKEN=abcdeyourtoken
16
+
# ```
17
+
# 3. Add PLATFORM_PROJECT and PLATFORM_ENVIRONMENT variables to your project `.ddev/config.yaml` or a `.ddev/config.platform.yaml`
18
+
# ```yaml
19
+
# web_environment:
20
+
# - PLATFORM_PROJECT=nf4amudfn23biyourproject
21
+
# - PLATFORM_ENVIRONMENT=main
22
+
# 4. `ddev restart`
23
+
# 5. Run `ddev pull platform`. After you agree to the prompt, the current upstream database and files will be downloaded.
24
+
# 6. Optionally use `ddev push platform` to push local files and database to platform.sh. Note that `ddev push` is a command that can potentially damage your production site, so this is not recommended.
25
+
26
+
# If you need to change this `platform.yaml` recipe, you can change it to suit your needs, but remember to remove the "ddev-generated" line from the top.
27
+
28
+
# Debugging: Use `ddev exec platform` to see what platform.sh knows about
29
+
# your configuration and whether it's working correctly.
30
+
31
+
auth_command:
32
+
command: |
33
+
set -eu -o pipefail
34
+
if [ -z "${PLATFORMSH_CLI_TOKEN:-}" ]; then echo "Please make sure you have set PLATFORMSH_CLI_TOKEN in ~/.ddev/global_config.yaml" && exit 1; fi
35
+
36
+
db_pull_command:
37
+
command: |
38
+
#set -x # You can enable bash debugging output by uncommenting
39
+
set -eu -o pipefail
40
+
ls /var/www/html/.ddev >/dev/null # This just refreshes stale NFS if possible
Copy file name to clipboardExpand all lines: composer.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -90,7 +90,7 @@
90
90
"patches": {
91
91
"drupal/core": {
92
92
"BaseFieldOverride fails to take into account ContentEntityInterface::bundleFieldDefinitions()... https://dgo.to/2321071": "https://www.drupal.org/files/issues/2019-12-24/2321071-39.patch",
93
-
"Allow an install hook in profiles installing from configuration, https://dgo.to/2982052": "https://www.drupal.org/files/issues/2021-09-27/2982052-73.patch"
93
+
"Allow an install hook in profiles installing from configuration, https://dgo.to/2982052": "https://www.drupal.org/files/issues/2022-05-19/2982052-80.patch"
94
94
},
95
95
"drupal/devel": {
96
96
"Compatability with Core 9.3, https://gitlab.com/drupalspoons/devel/-/issues/388": "https://gitlab.com/drupalspoons/devel/uploads/63e4e96921f8c05d3e98faf84d62d4e4/388-compatability-with-core-9.3.diff"
0 commit comments