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

@ -1,52 +1,45 @@
{ {
"name": "haste",
"name": "haste", "version": "0.0.1",
"version": "0.0.1", "private": true,
"description": "Private Pastebin Server",
"private": true, "keywords": [
"paste",
"description": "Private Pastebin Server", "pastebin"
],
"keywords": [ "paste", "pastebin" ], "author": {
"name": "John Crepezzi",
"author": { "email": "john.crepezzi@gmail.com",
"name": "John Crepezzi", "url": "http://seejohncode.com/"
"email": "john.crepezzi@gmail.com", },
"url": "http://seejohncode.com/" "main": "haste",
}, "dependencies": {
"winston": "*",
"main": "haste",
"dependencies": {
"winston": "*",
"connect": "< 2", "connect": "< 2",
"uglify-js": "*" "uglify-js": "*"
}, },
"devDependencies": {
"devDependencies": {
"mocha": "*", "mocha": "*",
"should": "*" "should": "*"
}, },
"bundledDependencies": [],
"bundledDependencies": [], "engines": {
"node": "*"
"engines": { },
"node": "*" "bin": {
}, "haste-server": "./server.js"
},
"bin": { "files": [
"haste-server": "./server.js" "server.js",
}, "lib",
"static"
"files": [ "server.js", "lib", "static" ], ],
"directories": {
"directories": { "lib": "./lib"
"lib": "./lib" },
}, "scripts": {
"start": "node server.js",
"scripts": {
"start": "node server.js",
"test": "mocha -r should spec/*" "test": "mocha -r should spec/*"
} },
"subdomain": "hastebin"
} }

View File

@ -8,7 +8,7 @@ var connect = require('connect');
var DocumentHandler = require('./lib/document_handler'); var DocumentHandler = require('./lib/document_handler');
// Load the configuration and set some defaults // 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.port = config.port || 7777;
config.host = config.host || 'localhost'; config.host = config.host || 'localhost';