File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ var ExpressApp = require('./lib/expressapp');
4
4
var WsApp = require ( './lib/wsapp' ) ;
5
5
var config = require ( './config' ) ;
6
6
7
- var port = process . env . BWS_PORT || 3001 ;
7
+ var port = process . env . BWS_PORT || 3232 ;
8
8
9
9
var app = ExpressApp . start ( config ) ;
10
10
//app.listen(port);
Original file line number Diff line number Diff line change @@ -17,15 +17,15 @@ var config = {
17
17
/* To use multilevel, uncomment this:
18
18
multiLevel: {
19
19
host: 'localhost',
20
- port: 3002 ,
20
+ port: 3230 ,
21
21
},
22
22
*/
23
23
} ,
24
24
lockOpts : {
25
25
/* To use locker-server, uncomment this:
26
26
lockerServer: {
27
27
host: 'localhost',
28
- port: 3003 ,
28
+ port: 3231 ,
29
29
},
30
30
*/
31
31
} ,
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env node
2
2
3
- var PORT = 3003 ;
3
+ var PORT = 3231 ;
4
4
5
5
console . log ( 'Server started at port ' + PORT + '...' ) ;
6
6
var Locker = require ( 'locker-server' ) ,
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ var db = level('./db', {
8
8
valueEncoding : 'json'
9
9
} ) ;
10
10
var HOST = 'localhost' ;
11
- var PORT = 3002 ;
11
+ var PORT = 3230 ;
12
12
13
13
14
14
console . log ( 'Server started at port ' + PORT + '...' ) ;
You can’t perform that action at this time.
0 commit comments