Skip to content

Commit

Permalink
environment tuning
Browse files Browse the repository at this point in the history
  • Loading branch information
jon r committed Oct 2, 2015
1 parent fb80df7 commit 8771e64
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export BUILDPACK_URL=https://github.com/ecobytes/buildpack-nginx.git
export BUILDPACK_URL=https://github.com/florianheinemann/buildpack-nginx.git

9 changes: 8 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ gulp.task('index', function() {
.pipe(gulp.dest(build_path));
});

gulp.task('env', function() {
return gulp.src([
'.env',
'.static'])
.pipe(gulp.dest(build_path));
});

gulp.task('libs', function() {
return gulp.src('lib/**')
.pipe(gulp.dest(build_path + '/lib'));
Expand All @@ -20,6 +27,6 @@ gulp.task('tangram', function() {
.pipe(gulp.dest(build_path + '/lib'));
});

gulp.task('build', ['index', 'libs', 'tangram']);
gulp.task('build', ['index', 'env', 'libs', 'tangram']);

gulp.task('default', ['build']);

0 comments on commit 8771e64

Please sign in to comment.