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
git clone https://github.com/robn/towncrier.git | |
cd towncrier | |
curl -L http://cpanmin.us | perl - Carton | |
carton install --deployment | |
cpanm Task::Plack |
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
docker run -d \ | |
--name="newrelic" \ | |
--net="host" \ | |
--pid="host" \ | |
--env="NEW_RELIC_LICENSE_KEY=YOUR_NEW_RELIC_LICENSE_KEY" \ | |
--volume="/var/run/docker.sock:/var/run/docker.sock:ro" \ | |
--volume="/sys/fs/cgroup/:/sys/fs/cgroup:ro" \ | |
--volume="/dev:/dev" \ | |
--restart=always \ | |
uzyexe/newrelic |
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
mkdir panamax | |
cd panamax | |
curl -O http://download.panamax.io/installer/pmx-installer-latest.zip | |
unzip pmx-installer-latest.zip | |
sudo su | |
./coreos install --stable |
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
require 'rake' | |
require 'rspec/core/rake_task' | |
require 'rubocop/rake_task' | |
desc 'Run all tests on CircleCI' | |
task circleci: [:style] | |
desc 'Run all style checks' | |
task style: 'style:ruby' |
OlderNewer