Skip to content

Instantly share code, notes, and snippets.

@talentedunicorn
talentedunicorn / GoodieBag.md
Last active July 29, 2020 06:01
Tools and useful resources online
const { src, dest, watch, series } = require('gulp')
const sass = require('gulp-sass')
// function style(cb) {
// return src(['./src/stylesheets/{main,critical}.scss', './src/stylesheets/shell.css'])
// .pipe(sass())
// .pipe(dest('./public'))
// cb();
// }
@talentedunicorn
talentedunicorn / BoltCMS - Dockerfile
Created April 5, 2016 16:01
Dockerfile for running BoltCMS (minimal configuration)
FROM php:5.6-apache
RUN apt-get update && apt-get install -y \
libfreetype6-dev \
libjpeg62-turbo-dev \
libpng12-dev \
&& docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
&& docker-php-ext-install gd mbstring \
&& a2enmod rewrite && service apache2 restart \