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 is an adaptation and simplication from the Platform.sh Drupal 10 templates: | |
# https://github.com/platformsh-templates/drupal10/blob/master/.platform.app.yaml | |
# https://github.com/platformsh-templates/drupal10/blob/master/drush/platformsh_deploy_drupal.sh | |
mounts: | |
# Create a persistent filesystem location to house the PREVIOUS_PLATFORM_TREE_ID | |
# value in a file that must be available for each build. | |
'/build_info': | |
source: local | |
source_path: 'build_info' |
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
#!/bin/sh | |
# | |
# Acquia Cloud Hook: post-code-deploy | |
# | |
# See https://github.com/acquia/cloud-hooks/blob/master/samples/post-code-deploy.tmpl | |
# See https://docs.acquia.com/acquia-cloud-platform/develop-apps/api/cloud-hooks | |
# | |
# Installation: | |
# | |
# 1. Place this file at `hooks/common/post-code-deploy/acquia-cloud-clear-varnish.sh` in your repository. |
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
image: php:8.3 | |
clone: | |
depth: full | |
pipelines: | |
branches: | |
develop: | |
- step: | |
script: | |
- scripts/ci/build.sh | |
- scripts/ci/test.sh |
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
#!/usr/bin/env bash | |
### | |
### Description: | |
### | |
### Create and tag a release for deployment to the build system and | |
### remote hosting environment. | |
### | |
### Usage: | |
### | |
### ./scripts/create-release.sh [1.2.3] |
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
stages: | |
- Deploy | |
# @todo implement a Build and Test step to verify code quality before deploy | |
# IMPORTANT: `acli push:artifact` leverages composer internally to build dependencies, so no separate build step is required. | |
'Deploy to Acquia': | |
image: php:8.2 | |
stage: Deploy | |
rules: |
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
#!/bin/bash | |
# Deployment script for Acquia Cloud Next on a multisite (non-Site Factory) setup. | |
# Place this file in your repository at hooks/common/post-code-deploy/deploy.sh | |
# See https://github.com/acquia/cloud-hooks/blob/master/samples/post-code-deploy.tmpl | |
site="$1" | |
target_env="$2" | |
cd "/var/www/html/$site.$target_env/docroot" |
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
#/bin/bash | |
# For an unknown reason, the Acquia Site Studio repositories package their | |
# releases in a way that prevents comparing code changes between releases. | |
# Maybe this is intentional as a kind of security through obscurity. Maybe it | |
# is unintentional and just a part of a flawed release practice. Either way, | |
# the source code is GPL'ed on Github which lends itself to being able to track | |
# the changes between versions. That is exactly what this script does. | |
## | |
## Usage: | |
## ./cohesion_git_history.sh https://github.com/acquia/cohesion |
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
#!/usr/bin/env bash | |
# | |
# Create a local environment leveraging DDEV for the specified Drupal core version. | |
# | |
# Installation: | |
# store this file in your /usr/local/bin or ~/bin and ensure it shows up in your $PATH | |
# | |
# Usage: | |
# ddev-drupal-core-install 11.x (bleeding edge) | |
# ddev-drupal-core-install 10.2.x |
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
# Add the following to your project's .gitignore | |
# The approach here assumes you're going to want to have the awscli also configured | |
# on your host OS, so we can just copy configs from ~/.aws/ on your host OS into the | |
# ddev web container during startup by way of the .ddev/homeadditions folder. | |
.ddev/homeadditions/.aws |
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
.contact-form input:not(:placeholder-shown):valid, | |
.contact-form textarea:not(:placeholder-shown):valid { | |
background-color: #f4feee; | |
} | |
.contact-form input:not(:placeholder-shown):invalid, | |
.contact-form textarea:not(:placeholder-shown):invalid { | |
background-color: #fff0f0; | |
} |
NewerOlder