From: Jason Woofenden Date: Fri, 1 Feb 2013 07:14:01 +0000 (-0500) Subject: move settings to the top of server.coffee X-Git-Tag: v1.0~2 X-Git-Url: https://jasonwoof.com/gitweb/?p=watch-my-terminal.git;a=commitdiff_plain;h=5ea471be49d98517725f2017d274c030ac482111 move settings to the top of server.coffee --- diff --git a/server.coffee b/server.coffee index adf1d55..f1e208a 100644 --- a/server.coffee +++ b/server.coffee @@ -1,3 +1,9 @@ +# SETTINGS +term_lines = 32 +term_columns = 104 +http_port = 2218 + + handler = (req, res) -> reply_err = (req, res, msg) -> res.writeHead(200, 'Content-Type': 'text/plain') @@ -35,9 +41,8 @@ io = require('socket.io').listen(app) fs = require('fs') terminal = require('./terminal.coffee') -# SETTINGS -app.listen(2218) -term = terminal.new(104, 34) +app.listen(http_port) +term = terminal.new(term_columns, term_lines) sockets = []