daux.io/Gruntfile.js

17 lines
348 B
JavaScript
Raw Normal View History

2013-06-03 15:32:55 +02:00
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-php');
grunt.initConfig({
php: {
dist: {
options: {
keepalive: true,
open: true,
port: 8085
}
}
}
});
grunt.registerTask('default', ['php']);
}