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 | |
####################################### | |
# Datadog Agent Installation Script | |
####################################### | |
# | |
# Description: | |
# This script automates the installation and configuration of the Datadog Agent | |
# on Linux systems. It validates the API key, automatically detects the correct | |
# site, and configures various Datadog features. |
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
<?php | |
/** | |
* Plugin Name: Nginx Log Parser | |
* Description: Parses Nginx logs for query parameter insights. | |
* Version: 1.0 | |
* Author: Kyle Taylor | |
* Author URI: https://pantheon.io | |
*/ | |
if (!class_exists('WP_List_Table')) { |
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
<?php | |
// Create the upload subdirectory, this is where | |
// we store all our generated images | |
if ( defined( 'BFITHUMB_UPLOAD_DIR' ) ) { | |
$upload_dir .= "/" . BFITHUMB_UPLOAD_DIR; | |
$upload_url .= "/" . BFITHUMB_UPLOAD_DIR; | |
} else { | |
$upload_dir .= "/bfi_thumb"; | |
$upload_url .= "/bfi_thumb"; |
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
node_modules | |
*.csv | |
package-lock.json |
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
const { join } = require("path"); | |
/** | |
* @type {import("puppeteer").Configuration} | |
*/ | |
module.exports = { | |
// Changes the cache location for Puppeteer. | |
cacheDirectory: join(__dirname, ".cache", "puppeteer"), | |
}; |
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
(wp|drush) eval '$cachetool=sys_get_temp_dir()."/cachetool.phar";$old="https://gordalina.github.io/cachetool/downloads/cachetool-3.2.2.phar";$new="https://github.com/gordalina/cachetool/releases/download/8.5.0/cachetool.phar";$url=(version_compare(phpversion(), "8") < 0) ? $old : $new;file_put_contents($cachetool, file_get_contents($url));chmod($cachetool, 0755);echo shell_exec("php $cachetool opcache:status --fcgi=/shared-run/php-fpm.sock");unlink($cachetool);' |
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
name: example | |
recipe: pantheon | |
config: | |
framework: drupal8 | |
site: example | |
id: <SITE_UUID> | |
xdebug: true | |
php: 8.1 | |
index: false | |
edge: false |
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 -e | |
# ____ _ ______ | |
# | __ )| |_ _ ___ / / ___|_ __ ___ ___ _ __ | |
# | _ \| | | | |/ _ \ / / | _| '__/ _ \/ _ \ '_ \ | |
# | |_) | | |_| | __// /| |_| | | | __/ __/ | | | | |
# |____/|_|\__,_|\___/_/ \____|_| \___|\___|_| |_| | |
# | |
# Blue / Green deployment script for Pantheon sites using Terminus. | |
# |
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
{ | |
"require": { | |
"drupal/monolog": "^2.2", | |
"newrelic/monolog-enricher": "^2.0" | |
} | |
} |
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 | |
# Example | |
# ./terminus-org-primary-domain.sh <ORG_ID> | |
# Exit on error | |
set -e | |
ORG_ID=$1 | |
TEMP_FILE=$(echo "/tmp/$ORG_ID-primary-domains.csv") |
NewerOlder