We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 941bb7f commit b4f1bb2Copy full SHA for b4f1bb2
.gitpod.yml
@@ -12,9 +12,12 @@ tasks:
12
ddev drush si -y --account-pass=admin --site-name="DrupalPod" demo_umami
13
command: |
14
echo y | ddev start
15
- if [ -n "$DP_INSTALL_PROFILE" ]; then
+
16
+ # Skip setup if it already ran once and if no specific install profile was requested
17
+ if [ ! -f /workspace/.drupalpod_initiated ] && [ -n "$DP_INSTALL_PROFILE" ]; then
18
ddev drush si -y --account-pass=admin --site-name="DrupalPod" "$DP_INSTALL_PROFILE"
19
fi
20
+ touch /workspace/.drupalpod_initiated
21
gp preview $(gp url 8080)
22
23
# VScode xdebug extension
0 commit comments