-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* chore: pull in upstream foundry changes * fix: npm missing * fix: run ddev commands from drupal directory Co-authored-by: Brian Gilbert <[email protected]> Co-authored-by: Stuart Clark <[email protected]>
- Loading branch information
1 parent
0e74976
commit a93799d
Showing
278 changed files
with
8,060 additions
and
6,826 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Download ddev's images | ||
ddev debug download-images | ||
|
||
# Set up ddev for use on gitpod | ||
DRUPAL_DIR="${GITPOD_REPO_ROOT}/drupal" | ||
|
||
# Download ddev's images | ||
cd $DRUPAL_DIR && ddev debug download-images | ||
|
||
# Misc housekeeping before start | ||
ddev config global --instrumentation-opt-in=true | ||
cd $DRUPAL_DIR && ddev config global --instrumentation-opt-in=true | ||
|
||
# Start ddev | ||
cd $DRUPAL_DIR && ddev start -y |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
|
||
## Description: Install Drupal | ||
## Usage: drupal-install | ||
## Example: "ddev drupal-install" | ||
|
||
composer install | ||
drush -y tome:install | ||
drush php-eval 'node_access_rebuild();' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.