##Sass Functions Cheat Sheet
| set :user, 'username' | |
| set :gateway, 'example.com' | |
| set :ssh_options, { | |
| user: fetch(:user), | |
| forward_agent: false, | |
| proxy: Net::SSH::Proxy::Command.new( | |
| "ssh -l #{fetch(:user)} #{fetch(:gateway)} -W %h:%p" | |
| ) | |
| } |
| user web; | |
| # One worker process per CPU core. | |
| worker_processes 8; | |
| # Also set | |
| # /etc/security/limits.conf | |
| # web soft nofile 65535 | |
| # web hard nofile 65535 | |
| # /etc/default/nginx |
| # Load DSL and set up stages | |
| require 'capistrano/setup' | |
| # Include default deployment tasks | |
| require 'capistrano/deploy' | |
| require 'capistrano/composer' | |
| require 'capistrano/symfony' |
Currently, there is an explosion of tools that aim to manage secrets for automated, cloud native infrastructure management. Daniel Somerfield did some work classifying the various approaches, but (as far as I know) no one has made a recent effort to summarize the various tools.
This is an attempt to give a quick overview of what can be found out there. The list is alphabetical. There will be tools that are missing, and some of the facts might be wrong--I welcome your corrections. For the purpose, I can be reached via @maxvt on Twitter, or just leave me a comment here.
There is a companion feature matrix of various tools. Comments are welcome in the same manner.
| [ | |
| { | |
| owner: 'bcoe', | |
| repo: 'top-npm-users', | |
| description: ':star: Generate a list of top npm users by based on monthly downloads.', | |
| language: 'JavaScript', | |
| isFork: false, | |
| stargazers: 27, | |
| watchers: 27 | |
| } |
| var gulp = require('gulp'); | |
| var source = require('vinyl-source-stream'); | |
| var buffer = require('vinyl-buffer'); | |
| var watch = require('gulp-watch'); | |
| var gutil = require('gulp-util'); | |
| var browserify = require('browserify'); | |
| var babel = require('gulp-babel'); | |
| gulp.task('transform', function() { | |
| return gulp.src('./app/src/**/*.jsx') |
Step-by-Step Guide how to install CI/CD with Docker Registry On Ubuntu 14.04 LTS from scratch.
- Install Docker using Official Manual or just run:
sudo bash
apt-get update
apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D