Mac installation notes (tested under MacOS 10.9.5), assuming VirtualBox is already installed on host.
This file contains hidden or 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 | |
# Test Ansile role inside container | |
# | |
# Inspired by the wonderful work of Jeff Geerling (@geerlingguy) | |
# https://gist.github.com/geerlingguy/73ef1e5ee45d8694570f334be385e181 | |
# and @samdoran | |
# https://gist.github.com/samdoran/c3d392ee697881fa33a1d1a65814a07b | |
# Colors | |
RED='\033[0;31m' |
This file contains hidden or 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
# Schema for the views plugins. | |
views.filter.project_size_range_select: | |
type: views_filter | |
label: 'Foobar numeric' | |
views.filter_value.project_size_range_select: | |
type: views.filter_value.numeric | |
label: 'Foobar Numeric' |
This file contains hidden or 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 | |
$all = $platforms = array(); | |
// Use standard linux 'PATH' style, so if you need more entries separate them using a column ':' char | |
// For example: '/path/to/platforms/container' OR '/path/to/platforms/container:/path/to/another/location' | |
// This dorectory will contain one or more drupal roots directories | |
$platforms_path = '/var/www/platforms'; | |
$paths = explode(':', $platforms_path); | |
foreach($paths as $path) { |