Skip to content
This repository has been archived by the owner on Oct 30, 2018. It is now read-only.

Allow the app starting with different port. This will fix the sd firefox issue. #1356

Merged
merged 4 commits into from Feb 27, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/quickstartguide/app.js
Expand Up @@ -14,7 +14,7 @@ var express = require('express'),
app;

app = express();
app.set('port', 8666);
app.set('port', process.env.PORT || 8666);
libmojito.extend(app);

app.use(libmojito.middleware());
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -52,7 +52,7 @@
"mojito-cli": "~0.1",
"node-static": ">0.6.8",
"wrench": "~1.3.9",
"yahoo-arrow": "0.0.86",
"yahoo-arrow": "0.3.3",
"portfinder": "0.2.1"
},
"optionalDependencies": {
Expand Down
Expand Up @@ -21,9 +21,6 @@
"test" : "test_quickstartguide_homepage.js",
"page" : "$$config.baseUrl$$"
},
{
"test" : "test_quickstartguide_homepage.js"
},
{
"controller": "locator",
"params": {
Expand Down