Added port to config

This commit is contained in:
Mattias Erming 2014-04-26 19:44:16 +02:00
parent 47280e7490
commit 4952a11e10
5 changed files with 12 additions and 10 deletions

View file

@ -37,7 +37,7 @@ These are the commands currently implemented:
`npm install`
5. Run the server
`npm start` or `nodejs index.js`
`npm start` or `node index.js`
6. Open your browser
`http://localhost:9000`

View file

@ -182,12 +182,6 @@ $(function() {
"partial": function(id) {
return new Handlebars.SafeString(render(id, this));
},
"uri": function(text) {
text = escape(text);
return URI.withinString(text, function(url) {
return "<a href='" + url.replace(/^www/, "//www") + "' target='_blank'>" + url + "</a>";
});
},
"slice": function(items, block) {
var limit = block.hash.limit;
var rows = $.map(items, function(i) {
@ -202,6 +196,12 @@ $(function() {
}
html += rows.slice(-limit).join("");
return html;
}
},
"uri": function(text) {
text = escape(text);
return URI.withinString(text, function(url) {
return "<a href='" + url.replace(/^www/, "//www") + "' target='_blank'>" + url + "</a>";
});
},
});
});

View file

@ -1,4 +1,5 @@
module.exports = {
port: 9000,
theme: "/themes/default.css",
defaults: {
nick: "shout_user",

View file

@ -37,10 +37,11 @@ var events = [
module.exports = listen;
function listen() {
var port = config.port || 9000;
var app = http()
.use(index)
.use(http.static("client"))
.listen(9000);
.listen(port);
var self = this;
sockets = io.listen(app, {log: 0}).sockets.on("connection", function(s) {

View file

@ -23,7 +23,7 @@
],
"main": "./index.js",
"scripts": {
"start": "nodejs index.js"
"start": "node index.js"
},
"repository": {
"type": "git",