Skip to content
This repository was archived by the owner on Apr 20, 2018. It is now read-only.

Commit 68cccb6

Browse files
committed
making examples consistent with other feathers plugins
1 parent c9065ae commit 68cccb6

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

examples/authorization.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,6 @@ todoService.after({
6969
}
7070
});
7171

72-
app.listen(8000);
72+
app.listen(8080);
73+
74+
console.log('App listening on 127.0.0.1:8080');

examples/timestamp.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ var app = feathers()
4343
}
4444
});
4545

46-
app.listen(8000);
46+
app.listen(8080);
47+
console.log('App listening on 127.0.0.1:8080');
4748

4849
// Get the wrapped service object which will be used in the other exapmles
4950
var todoService = app.lookup('todos');

0 commit comments

Comments
 (0)