Skip to content

Commit

Permalink
set default to 0.0.0.0 so a developer can run the server on a dev mac…
Browse files Browse the repository at this point in the history
…hine while accessing the server from another client machine.
  • Loading branch information
jmazzitelli authored and lucasponce committed Jul 6, 2017
1 parent 34af688 commit 03eddb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/main/ui/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ module.exports = function (grunt) {
options: {
base: '<%= projectSettings.src %>',
port: grunt.option("port") || 8003,
hostname: 'localhost', // 0.0.0.0 allows access from outside
hostname: '0.0.0.0', // 0.0.0.0 allows access from outside
livereload: 37830
},
livereload: {
Expand Down Expand Up @@ -468,4 +468,4 @@ module.exports = function (grunt) {
'build'
] );

};
};

0 comments on commit 03eddb5

Please sign in to comment.