Kind of continue from the other gist how to install LAMP on an Amazon AMI
##Install git
sudo yum install git-core
##Create ssh directory since it doesn't exists by default on the Amazon AMI
Kind of continue from the other gist how to install LAMP on an Amazon AMI
##Install git
sudo yum install git-core
##Create ssh directory since it doesn't exists by default on the Amazon AMI
This gist assumes:
A Pen by Matthew Holland on CodePen.
#!/bin/sh | |
# | |
# Automatically adds Jira key to commit message | |
# | |
if [ -z "$BRANCHES_TO_SKIP" ]; then | |
BRANCHES_TO_SKIP=(master develop) | |
fi | |
BRANCH_NAME=$(git symbolic-ref --short HEAD) |
@mixin neumorphism($background) { | |
$highlight: lighten($background, 4%); | |
$lowlight: darken($background, 4%); | |
$shadowhigh: lighten($background, 9%); | |
$shadowlow: darken($background, 9%); | |
background: linear-gradient(145deg, $highlight, $lowlight); | |
box-shadow: 2em 2em 4em $shadowlow, -2em -2em 4em $shadowhigh; | |
} |
@charset 'utf-8'; | |
@import 'settings'; | |
@import 'foundation'; | |
@import 'motion-ui'; | |
@include foundation-global-styles; | |
// @include foundation-grid; | |
// @include foundation-flex-grid; | |
// |
import $ from 'jquery'; | |
import { Foundation } from 'foundation-sites/js/foundation.core'; | |
import { rtl, GetYoDigits, transitionend } from 'foundation-sites/js/foundation.util.core'; | |
import { Box } from 'foundation-sites/js/foundation.util.box' | |
import { onImagesLoaded } from 'foundation-sites/js/foundation.util.imageLoader'; | |
import { Keyboard } from 'foundation-sites/js/foundation.util.keyboard'; | |
import { MediaQuery } from 'foundation-sites/js/foundation.util.mediaQuery'; | |
import { Motion, Move } from 'foundation-sites/js/foundation.util.motion'; | |
import { Nest } from 'foundation-sites/js/foundation.util.nest'; | |
import { Timer } from 'foundation-sites/js/foundation.util.timer'; |
import $ from 'jquery'; | |
require('what-input'); | |
window.$ = $; | |
import Foundation from 'foundation-sites'; | |
// If you want to pick and choose which modules to include, comment out the above and uncomment | |
// the line below | |
//import './lib/foundation-explicit-pieces'; |
'use strict'; | |
import plugins from 'gulp-load-plugins'; | |
import yargs from 'yargs'; | |
import browser from 'browser-sync'; | |
import gulp from 'gulp'; | |
import panini from 'panini'; | |
import rimraf from 'rimraf'; | |
import sherpa from 'style-sherpa'; | |
import yaml from 'js-yaml'; |
/*global require*/ | |
"use strict"; | |
var gulp = require('gulp'), | |
gulpCopy = require('gulp-copy'), | |
path = require('path'), | |
data = require('gulp-data'), | |
// pug = require('gulp-pug'), | |
twig = require('gulp-twig'), // Decided to use twig, because already familiar with it | |
prefix = require('gulp-autoprefixer'), |