Skip to content

Instantly share code, notes, and snippets.

@fernandofleury
Created September 29, 2013 23:08
Show Gist options
  • Save fernandofleury/6757375 to your computer and use it in GitHub Desktop.
Save fernandofleury/6757375 to your computer and use it in GitHub Desktop.
grunt.js simple test
module.exports = function(grunt) {
'use strict';
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
connect: {
server: {
options: {
port: 9001,
hostname: '*',
keepalive: true
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-connect');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment