Update server config path

This commit is contained in:
John Crepezzi 2012-09-19 14:28:52 -04:00
commit 814a49812a
2 changed files with 38 additions and 45 deletions

View file

@ -8,7 +8,7 @@ var connect = require('connect');
var DocumentHandler = require('./lib/document_handler');
// Load the configuration and set some defaults
var config = JSON.parse(fs.readFileSync('config.js', 'utf8'));
var config = JSON.parse(fs.readFileSync('./config.js', 'utf8'));
config.port = config.port || 7777;
config.host = config.host || 'localhost';