1
0
mirror of https://github.com/seejohnrun/haste-server.git synced 2025-12-13 03:05:55 +00:00

Update server config path

This commit is contained in:
John Crepezzi
2012-09-19 14:28:52 -04:00
parent e0610bc1be
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';