File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ var app = express();
8
8
9
9
require ( './config/express' ) ( app , config ) ;
10
10
11
+ console . log ( 'Starting up on: ' + config . port ) ;
12
+ console . log ( ' DB: ' + config . db ) ;
13
+
11
14
db . sequelize
12
15
. sync ( )
13
16
. then ( function ( ) {
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ var config = {
18
18
app : {
19
19
name : 'foos-tracker'
20
20
} ,
21
- port : 3000 ,
21
+ port : 3030 ,
22
22
db : 'sqlite://localhost/foos-tracker-test' ,
23
23
storage : rootPath + '/data/foos-tracker-test'
24
24
} ,
@@ -28,9 +28,9 @@ var config = {
28
28
app : {
29
29
name : 'foos-tracker'
30
30
} ,
31
- port : 3000 ,
31
+ port : 3030 ,
32
32
db : 'sqlite://localhost/foos-tracker-production' ,
33
- storage : rootPath + 'data/foos-tracker-production'
33
+ storage : rootPath + '/ data/foos-tracker-production'
34
34
}
35
35
} ;
36
36
You can’t perform that action at this time.
0 commit comments