Skip to content

Commit 4013851

Browse files
committed
x
1 parent 4ccfbe5 commit 4013851

File tree

5 files changed

+16
-9
lines changed

5 files changed

+16
-9
lines changed

.lagoon.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,6 @@ tasks:
1010
# service: cli
1111

1212
post-rollout:
13-
- run:
14-
# If no DB, sync from Master branch.
15-
name: If no Drupal installed - get database from Master
16-
command: |
17-
if [[ ${LAGOON_GIT_SAFE_BRANCH} != "master" ]] && ! drush status --fields=bootstrap | grep -q "Successful"; then
18-
drush -y sql-sync @lagoon.master @self
19-
fi
20-
service: cli
21-
shell: bash
2213
- run:
2314
name: drush updb
2415
command: drush -y updb --cache-clear=0 || (drush cr && drush -y updb --cache-clear=0)

docroot/sites/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/README.txt

docroot/sites/default/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/default.development.services.yml
2+
/settings.lagoon.php

docroot/sites/sites.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
3+
/**
4+
* @file
5+
* Separate site for running cypress tests.
6+
*/
7+
8+
$sites['8889.localhost'] = 'cypress';

docroot/sites/theme.services.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Theming services configuration
2+
parameters:
3+
twig.config:
4+
debug: true
5+
cache: false

0 commit comments

Comments
 (0)