gitextract_g_zia96e/ ├── .ddev/ │ ├── commands/ │ │ ├── host/ │ │ │ └── exec_dir │ │ └── web/ │ │ ├── nightwatch │ │ └── phpunit │ ├── config.yaml │ ├── docker-compose.ports.yaml │ └── docker-compose.testing.yaml ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── Bug_report.md │ │ ├── Feature_request.md │ │ └── Support_request.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── RELEASE_NOTES_TEMPLATE.md │ ├── move.yml │ └── workflows/ │ ├── codesee-arch-diagram.yml │ ├── mirror.yml │ ├── vscode-extension.build.yml │ └── vscode-extension.release.yml ├── .gitignore ├── .gitpod/ │ ├── README.md │ ├── drupal/ │ │ ├── drupalpod-setup/ │ │ │ ├── cleanup.sh │ │ │ ├── composer_setup.sh │ │ │ ├── contrib_modules_setup.sh │ │ │ ├── ddev_setup.sh │ │ │ ├── drupal_setup_contrib.sh │ │ │ ├── drupal_setup_core.sh │ │ │ ├── drupalpod-setup.md │ │ │ ├── drupalpod-setup.sh │ │ │ ├── fallback_setup.sh │ │ │ └── git_setup.sh │ │ ├── install-essential-packages.sh │ │ ├── ssh/ │ │ │ ├── 00-interactive-ssh-setup.sh │ │ │ ├── 01-check-private-ssh.sh │ │ │ ├── 02-setup-private-ssh.sh │ │ │ ├── 03-generate-drupal-ssh-instructions.sh │ │ │ ├── 04-confirm-ssh-setup.sh │ │ │ ├── 05-set-repo-as-ssh.sh │ │ │ └── instructions-template.md │ │ └── templates/ │ │ └── git-exclude.template │ ├── images/ │ │ ├── Dockerfile │ │ └── push.sh │ └── utils/ │ ├── ddev-in-gitpod-setup.sh │ ├── env-setup.sh │ ├── script-templates/ │ │ ├── ddev-composer.template.sh │ │ ├── ddev-drush.template.sh │ │ ├── ddev-node.template.sh │ │ ├── ddev-npx.template.sh │ │ ├── ddev-nvm.template.sh │ │ ├── ddev-php.template.sh │ │ ├── ddev-yarn.template.sh │ │ ├── phpstorm.template.sh │ │ ├── preview.template.sh │ │ └── protect-my-git.template.sh │ ├── send-a-message-gcs.sh │ ├── send-a-message-gitpod.sh │ └── set-base-environment.sh ├── .gitpod.yml ├── .vscode/ │ ├── launch.json │ └── settings.json ├── Drupal Core Development Composer Project.md ├── LICENSE ├── README.md ├── recipes/ │ └── .gitignore └── src/ ├── composer-drupal-core-setup/ │ ├── patch-core-index-and-update.sh │ └── scaffold-patch-index-and-update-php.patch ├── drush-commands-core-development/ │ ├── 11/ │ │ └── DevelopmentProjectCommands.php │ ├── 12/ │ │ └── DevelopmentProjectCommands.php │ └── 13/ │ └── DevelopmentProjectCommands.php └── vscode-extension/ └── drupalpod-ext/ ├── .eslintrc.json ├── .vscode/ │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── README.md ├── package.json ├── src/ │ ├── extension.ts │ ├── help-content.ts │ └── test/ │ ├── runTest.ts │ └── suite/ │ ├── extension.test.ts │ └── index.ts └── tsconfig.json