Commit 814a4981 authored by John Crepezzi's avatar John Crepezzi
Browse files

Update server config path

parent e0610bc1
Loading
Loading
Loading
Loading
+37 −44
Original line number Diff line number Diff line
{

  "name": "haste",
  "version": "0.0.1",

  "private": true,

  "description": "Private Pastebin Server",

	"keywords": [ "paste", "pastebin" ],

  "keywords": [
    "paste",
    "pastebin"
  ],
  "author": {
    "name": "John Crepezzi",
    "email": "john.crepezzi@gmail.com",
    "url": "http://seejohncode.com/"
  },

  "main": "haste",

  "dependencies": {
    "winston": "*",
    "connect": "< 2",
    "uglify-js": "*"
  },

  "devDependencies": {
    "mocha": "*",
    "should": "*"
  },

  "bundledDependencies": [],

  "engines": {
    "node": "*"
  },

  "bin": {
    "haste-server": "./server.js"
  },

	"files": [ "server.js", "lib", "static" ],

  "files": [
    "server.js",
    "lib",
    "static"
  ],
  "directories": {
    "lib": "./lib"
  },

  "scripts": {
    "start": "node server.js",
    "test": "mocha -r should spec/*"
	}

  },
  "subdomain": "hastebin"
}
+1 −1
Original line number Diff line number Diff line
@@ -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';