From: Jason Woofenden Date: Wed, 25 Jan 2012 19:53:32 +0000 (-0500) Subject: add hack to fix current working directory on nodester X-Git-Url: https://jasonwoof.com/gitweb/?p=peach-cgt.git;a=commitdiff_plain;h=8c6e422dbf34db0f751e392e2e9d86fcdedf4aa7 add hack to fix current working directory on nodester --- diff --git a/server.coffee b/server.coffee index db252bd..b1cdac9 100644 --- a/server.coffee +++ b/server.coffee @@ -301,6 +301,11 @@ http_server = http.createServer (req, res) -> return html_handler url_parts.query, res, req, url_parts +################## INIT #################### +# nodester starts this app with the current working directory set to / and working copy in /app +if process.cwd() is '/' + process.chdir '/app' + setInterval expire_old_games, 2 * 60 * 1000 # check every 2 minutes for expired games http_server.listen listen_port, "127.0.0.1"