Skip to content

Commit bf4b849

Browse files
Test 2
1 parent 855a1fa commit bf4b849

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

app.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
// mongoose setup
66
require('./mongoose-db');
7-
require('./typeorm-db')
7+
require('./typeorm-db');
88

99
var st = require('st');
1010
var crypto = require('crypto');
@@ -71,6 +71,8 @@ app.use('/users', routesUsers)
7171
// Static
7272
app.use(st({ path: './public', url: '/public' }));
7373

74+
console.log('test');
75+
7476
// Add the option to output (sanitized!) markdown
7577
marked.setOptions({ sanitize: true });
7678
app.locals.marked = marked;
@@ -80,7 +82,7 @@ if (app.get('env') == 'development') {
8082
app.use(errorHandler());
8183
}
8284

83-
var token = 'SECRET_TOKEN_f8ed84e8f41e4146403dd4a6bbcea5e418d23a9';
85+
var token = 'SECRET_TOKEN_f8ed84e8f41e4146403dd4a6bbcea5e418d23a9'; // inline
8486
console.log('token: ' + token);
8587

8688
http.createServer(app).listen(app.get('port'), function () {

0 commit comments

Comments
 (0)