Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
this.db_reconnect = function() {
var Postgres = require("postgres");
db = new Postgres.Connection(database_name, username, password, port, host);
};
config.onerror = {
accepts: function (ctx) {
if (ctx.req.url.indexOf('/api/') === 0) {
return 'json';
} else {
return 'html';
}
},
};
config.view = nunjucks;
config.sequelize = {
dialect: 'postgres',
database: props['postgres.database'],
host: process.env.POSTGRES_ADDRESS || props['postgres.address'],
port: '5432',
username: props['postgres.username'],
password: props['postgres.password'],
define: {
freezeTableName: true,
underscored: true,
},
};
return config;
};
config.onerror = {
accepts: function (ctx) {
if (ctx.req.url.indexOf('/api/') === 0) {
return 'json';
} else {
return 'html';
}
},
};
config.view = nunjucks;
config.sequelize = {
dialect: 'postgres',
database: props['postgres.database'],
host: process.env.POSTGRES_ADDRESS || props['postgres.address'],
port: '5432',
username: props['postgres.username'],
password: props['postgres.password'],
define: {
freezeTableName: true,
underscored: true,
},
};
return config;
};
return 'json';
} else {
return 'html';
}
},
};
config.view = nunjucks;
config.sequelize = {
dialect: 'postgres',
database: props['postgres.database'],
host: process.env.POSTGRES_ADDRESS || props['postgres.address'],
port: '5432',
username: props['postgres.username'],
password: props['postgres.password'],
define: {
freezeTableName: true,
underscored: true,
},
};
return config;
};
if (ctx.req.url.indexOf('/api/') === 0) {
return 'json';
} else {
return 'html';
}
},
};
config.view = nunjucks;
config.sequelize = {
dialect: 'postgres',
database: props['postgres.database'],
host: process.env.POSTGRES_ADDRESS || props['postgres.address'],
port: '5432',
username: props['postgres.username'],
password: props['postgres.password'],
define: {
freezeTableName: true,
underscored: true,
},
};
return config;
};