17 Zeilen
348 B
JavaScript
17 Zeilen
348 B
JavaScript
module.exports = function(grunt) {
|
|
grunt.loadNpmTasks('grunt-php');
|
|
|
|
grunt.initConfig({
|
|
php: {
|
|
dist: {
|
|
options: {
|
|
keepalive: true,
|
|
open: true,
|
|
port: 8085
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
grunt.registerTask('default', ['php']);
|
|
} |