Merge pull request #51 from dirkk0/patch-1

Added hostname
0.1
Robin Hawkes 2014-02-25 21:03:17 +00:00
commit 62387679fd
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -102,6 +102,8 @@ module.exports = function(grunt) {
server: {
options: {
port: port,
// change hostname to 0.0.0.0 to open it up
hostname: 'localhost',
base: '.',
keepalive: true,
debug: true
@ -157,4 +159,4 @@ module.exports = function(grunt) {
grunt.registerTask('test', ['jshint', 'mocha_phantomjs']);
grunt.task.run('notify_hooks');
};
};