Commit bf4b849 1 parent 855a1fa commit bf4b849 Copy full SHA for bf4b849
File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 4
4
5
5
// mongoose setup
6
6
require ( './mongoose-db' ) ;
7
- require ( './typeorm-db' )
7
+ require ( './typeorm-db' ) ;
8
8
9
9
var st = require ( 'st' ) ;
10
10
var crypto = require ( 'crypto' ) ;
@@ -71,6 +71,8 @@ app.use('/users', routesUsers)
71
71
// Static
72
72
app . use ( st ( { path : './public' , url : '/public' } ) ) ;
73
73
74
+ console . log ( 'test' ) ;
75
+
74
76
// Add the option to output (sanitized!) markdown
75
77
marked . setOptions ( { sanitize : true } ) ;
76
78
app . locals . marked = marked ;
@@ -80,7 +82,7 @@ if (app.get('env') == 'development') {
80
82
app . use ( errorHandler ( ) ) ;
81
83
}
82
84
83
- var token = 'SECRET_TOKEN_f8ed84e8f41e4146403dd4a6bbcea5e418d23a9' ;
85
+ var token = 'SECRET_TOKEN_f8ed84e8f41e4146403dd4a6bbcea5e418d23a9' ; // inline
84
86
console . log ( 'token: ' + token ) ;
85
87
86
88
http . createServer ( app ) . listen ( app . get ( 'port' ) , function ( ) {
You can’t perform that action at this time.
0 commit comments