Edit the configuration file to point the
fetch variable at your server.
// nodejuice.js - the config file
exports.sidekick = {
port : 3010, // Points to StaticMatic Preview w/ NodeJuice
fetch : {
host : 'localhost',
port : 3000
}
};
exports.seeker = {
host : null, // Leave 'null' to listen on all hosts.
port : 8002, // port :-/
delay : 180, // time in ms before page starts to reload.
// setting too low will cause file read errors in Apache
wait : 1200, // time in milliseconds before a new connection.
// setting too low will make crazziness.
add : true, // allow new file to push updates.
remove : true, // allow file delete to push updates.
touch : false, // allow file touch to push updates.
access : false, // allow file reads to push updates.
bits : true, // allow chmod/chown to push updates.
save : true, // allow file save to push updates.
dir : true, // allow directory changes to push updates.
ignore : [ // path or file name to ignore.
/\/\./,
/git$/,
/svn$/,
/cvs$/,
/swp$/,
/~$/
]
};