Updated docs

This commit is contained in:
Jeremiah Billmann
2013-08-09 15:17:17 -04:00
parent 0eef87e5a9
commit 2564f3492f
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -3,4 +3,6 @@ A sample application using GarageServer.IO
## Install
Change the `path` parameter of `GarageServerIO.initializeGarageServer` that is found in file, `/public/javascripts/game.js`, to point to the URL where your Node app runs. I.e. `http://127.0.0.1:3000`.
Execute `$ npm install` in the `example/` root directory and `$ node app.js` to run the application.
+1 -1
View File
@@ -7,7 +7,7 @@ var express = require('express'),
app = express();
app.configure(function () {
app.set('port', process.env.PORT || 2121);
app.set('port', process.env.PORT || 3000);
app.set('views', __dirname + '/views');
app.set('view engine', 'jade');
app.use(express.favicon());