I'm running grunt/node/famo.us for a demo app on my Windows dev box. Everything works fine on that machine when I go to localhost:1377 using Chrome. Now I am trying to access the site from my other box on the same network using ipaddress:1377 but Chrome says it can't find it. I have totally disabled Windows Firewall but it still won't come up. Is remote calling a grunt site supported? Am I doing something else wrong?
Here is my gruntfile.js:
/*global module:false*/
/*Generated initially from grunt-init, heavily inspired by yo webapp*/
module.exports = function(grunt) {
'use strict';
// Time how long tasks take. Can help when optimizing build times
require('time-grunt')(grunt);
// Load grunt config
require('load-grunt-config')(grunt, {
init: true,
data: {
config: {
// Configurable paths
app: 'app',
dist: 'dist'
}
}
});
};