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
version: '2' | |
services: | |
### Applications Code Container ############################# | |
applications: | |
image: tianon/true | |
volumes: | |
- ${APPLICATION}:/var/www |
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
############################ | |
# General Setup | |
############################ | |
### Application Path | |
# Point to your application code, will be available at `/var/www`. | |
APPLICATION=../php/ | |
### Data Path: |
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
/** | |
* Created by Troy McNeil on 8/26/14. | |
*/ | |
var gulp = require('gulp'); | |
var gutl = require('gulp-util'); | |
var notify = require('gulp-notify'); | |
var phpunit = require('gulp-phpunit'); | |
var uglify = require('gulp-uglify'); | |
var concat = require('gulp-concat'); | |
var rename = require('gulp-rename'); |