-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.js
61 lines (48 loc) · 2.01 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
var express = require('express');
var routes = require('./routes');
var http = require('http');
var path = require('path');
var ibmdb = require('ibm_db');
var app = express();
// all environments
app.set('port', process.env.PORT || 3000);
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'jade');
app.use(express.favicon());
app.use(express.logger('dev'));
app.use(express.json());
app.use(express.urlencoded());
app.use(express.methodOverride());
app.use(express.cookieParser('your secret here'));
app.use(express.session());
app.use(app.router);
app.use(express.static(path.join(__dirname, 'public')));
var db2;
var hasConnect = false;
// Set VCAP environment variable to run program locally
process.env['VCAP_SERVICES'] = '{"dashDB": [ { "name": "myDash","label": "dashDB", "plan": "Entry", "credentials": {"port": 50000,"db": "BLUDB", "username": "dash101635","host": "awh-yp-small02.services.dal.bluemix.net","https_url": "https://awh-yp-small02.services.dal.bluemix.net:8443","hostname": "awh-yp-small02.services.dal.bluemix.net","jdbcurl":"jdbc:db2://awh-yp-small02.services.dal.bluemix.net:50000/BLUDB","uri": "db2://dash101635:5rSE5Shkj3Yy@awh-yp-small02.services.dal.bluemix.net:50000/BLUDB","password": "5rSE5Shkj3Yy" } } ]}';
// development only
if ('development' == app.get('env')) {
app.use(express.errorHandler());
}
if (process.env.VCAP_SERVICES) {
var env = JSON.parse(process.env.VCAP_SERVICES);
if (env['dashDB']) {
hasConnect = true;
db2 = env['dashDB'][0].credentials;
}
}
if ( hasConnect == false ) {
db2 = {
db: "BLUDB",
hostname: "xxxx",
port: 50000,
username: "xxx",
password: "xxx"
};
}
var connString = "DRIVER={DB2};DATABASE=" + db2.db + ";UID=" + db2.username + ";PWD=" + db2.password + ";HOSTNAME=" + db2.hostname + ";port=" + db2.port;
app.get('/', routes.listSysTables(ibmdb,connString));
http.createServer(app).listen(app.get('port'), function(){
console.log('Express server listening on port ' + app.get('port'));
});