Skip to content

Commit

Permalink
Fix server port
Browse files Browse the repository at this point in the history
  • Loading branch information
pamigomp committed Jun 25, 2016
1 parent b4ec505 commit 124f970
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion package.json
Expand Up @@ -50,7 +50,6 @@
"grunt-jscs": "^3.0.0",
"grunt-karma": "^2.0.0",
"grunt-protractor-runner": "^3.2.0",
"http-server": "^0.9.0",
"jasmine-core": "^2.4.1",
"jasmine-reporters": "^2.1.1",
"karma": "^0.13.22",
Expand Down
2 changes: 1 addition & 1 deletion protractor.conf.js
Expand Up @@ -8,7 +8,7 @@ exports.config = {
capabilities: {
'browserName': 'firefox'
},
baseUrl: 'http://localhost:8000/app/',
baseUrl: 'http://localhost:8000/',
framework: 'jasmine',
onPrepare: function () {
browser.driver.manage().window().setSize(800, 600);
Expand Down
2 changes: 1 addition & 1 deletion server.js
@@ -1,7 +1,7 @@
var express = require('express');
var app = express();

app.set('port', (process.env.PORT || 5000));
app.set('port', (process.env.PORT || 8000));

app.use(express.static(__dirname + '/app'));

Expand Down

0 comments on commit 124f970

Please sign in to comment.