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
mkdir scrutinizer && cd scrutinizer | |
# Install tools | |
# - Scrutinizer and composer | |
wget http://scrutinizer-ci.com/scrutinizer.phar | |
curl -sS https://getcomposer.org/installer | php | |
# - All needed CI tools | |
php composer.phar require h4cc/phpqatools:~1.2 | |
cp -p composer.phar vendor/bin/composer |
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 | |
$rules = Config::inst()->get('Director', 'rules'); | |
unset($rules['$Controller//$Action/$ID/$OtherID']); | |
Config::inst()->remove('Director', 'rules'); | |
Config::inst()->update('Director', 'rules', $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
# Assumed go is already installed somewhere | |
# Set the Go PATH (this is where go installs binaries/packages/source code) | |
export GOPATH=/home/james/go | |
# install easypki | |
go get github.com/google/easypki/cmd/easypki | |
# Add Go bin directory to PATH | |
export PATH=/home/james/go/bin:$PATH |