Addresses something like this:
Got different reports about installed GuestAdditions version:
Virtualbox on your host claims: 4.3.10
VBoxService inside the vm claims: 5.0.10
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure(2) do |config| | |
config.vm.box = "ubuntu/precise64" | |
config.vm.network "forwarded_port", guest: 80, host: 8080 | |
config.vm.provision "shell", path: "./vagrant-provision.sh" | |
end |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure(2) do |config| | |
config.vm.box = "puppetlabs/centos-6.6-64-nocm" | |
config.vm.network "forwarded_port", guest: 80, host: 8080 | |
config.vm.provision "shell", path: "./vagrant-provision.sh" | |
end |
{ | |
"rules": { | |
"indent": [ 2, 4 ], | |
"quotes": [ 2, "double" ], | |
"linebreak-style": [ 2, "unix" ], | |
"semi": [ 2, "never" ], | |
"comma-dangle": [ 0, "always-multiline" ] | |
}, | |
"env": { | |
"es6": true, |
"use strict" | |
require("babel-polyfill") | |
const argv = require('minimist')(process.argv.slice(2)) | |
import gulp from 'gulp' | |
import gutil from 'gulp-util' | |
import sass from 'gulp-sass' | |
import concat from 'gulp-concat' | |
import gulpif from 'gulp-if' | |
import autoprefixer from 'gulp-autoprefixer' |
import gulp from 'gulp' | |
import gutil from 'gulp-util' | |
import plumber from 'gulp-plumber' | |
import os from 'os' | |
import batch from 'gulp-batch' | |
import imagemin from 'gulp-imagemin' | |
import pngquant from 'imagemin-pngquant' | |
import changed from 'gulp-changed' | |
const plumberh = function (err) { |
#!/bin/bash | |
if [[ -z "$1" ]]; then exit 1; fi | |
if [[ -z "$2" ]]; then exit 1; fi | |
TASK=$1 | |
# Backup folders | |
BK_BASE=/path/to/backup/folder | |
BK_DAILY=$BK_BASE/daily |
How to install Wordpress as a dependency in your project, without including the WP install in version control.
In the spirit of The Twelve Factor App, we want to "explicitly declare and isolate dependencies". Wordpress doesn't really promote this idea out of the box, so we have jump through a few hoops to do it. This document describes a simple method to include Wordpress as a dependency in this way.
# | |
# Many apps send email. In a dev environment, we generally don't want those emails | |
# to get out. However, we still want our app to think it's sending mail and we want | |
# to verify that emails are being sent, with the correct content and to the correct | |
# recipients. | |
# | |
# This setup solves that problem by delivering all out-bound emails to the local | |
# "vagrant" user's mailbox. You can then read the emails using the "mutt" command. | |
# | |
# Most if this is copied from: |