File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 66 */
77var mongoHost = process . env . MONGO_HOST || 'localhost' ;
88var mongoPort = process . env . MONGO_PORT ? parseInt ( process . env . MONGO_PORT ) : 27017 ;
9- var dbName = process . env . DB_NAME || 'oe-model-personalization-test' ;
9+ var dbName = process . env . DB_NAME || "dbname" ;
1010module . exports = {
1111 'memdb' : {
1212 'name' : 'memdb' ,
Original file line number Diff line number Diff line change 55 *
66 */
77
8- var oracleSID = process . env . ORACLE_SID || 'ORCLCDB' ;
8+ var oracleSID = process . env . ORACLE_SID ;
99var oracleHost = process . env . ORACLE_HOST || 'localhost' ;
1010var oraclePort = process . env . ORACLE_PORT ? parseInt ( process . env . ORACLE_PORT ) : 1521 ;
11- var oracleUserName = process . env . ORACLE_USERNAME || 'oeadmin' ;
12- var oracleUserPassword = process . env . ORACLE_PASSWORD || 'oeadmin' ;
11+ var oracleUserName = process . env . ORACLE_USERNAME ;
12+ var oracleUserPassword = process . env . ORACLE_PASSWORD ;
1313
1414module . exports = {
1515 'nullsrc' : {
Original file line number Diff line number Diff line change 66 */
77var postgresHost = process . env . POSTGRES_HOST || 'localhost' ;
88var postgresPort = process . env . POSTGRES_PORT ? parseInt ( process . env . POSTGRES_PORT ) : 5432 ;
9- var dbName = process . env . DB_NAME || 'oe-model-personalization-test' ;
9+ var postgresPassword = process . env . POSTGRES_PASSWORD ;
10+ var dbName = process . env . DB_NAME || "dbname" ;
1011module . exports =
1112{
1213 'memdb' : {
@@ -22,7 +23,7 @@ module.exports =
2223 'port' : postgresPort ,
2324 'url' : 'postgres://postgres:postgres@' + postgresHost + ':' + postgresPort + '/' + dbName ,
2425 'database' : dbName ,
25- 'password' : 'postgres' ,
26+ 'password' : postgresPassword ,
2627 'name' : 'db' ,
2728 'connector' : 'oe-connector-postgresql' ,
2829 'user' : 'postgres' ,
You can’t perform that action at this time.
0 commit comments