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
| # Use only in your development environment, behind a firewall | |
| sudo apt-get install dnsmasq | |
| echo 'address=/.3dev/127.0.0.1' | sudo tee -a /etc/dnsmasq.conf | |
| echo 'listen-address=127.0.0.1' | sudo tee -a /etc/dnsmasq.conf | |
| sudo service dnsmasq restart | |
| # now imlazy.3dev will resolve to localhost | |
| # install nginx + php7 |
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
| var gulp = require('gulp'); | |
| var coffee = require('gulp-coffee'); | |
| gulp.task('scripts', function () { | |
| gulp.src('src/*.coffee') | |
| .pipe(coffee()) | |
| .pipe(gulp.dest('./')); | |
| }); | |
| gulp.task('watch', function () { |