Environments
setting up our environments:
module.exports = {
TEST: {
url: 'https://test.app.com',
con_string: 'Driver={SQL Server};Server=DESKTOP\\SQLEXPRESS;Database=test;',
username: 'testuser',
password: 'test123'
},
PREP: {
url: 'https://prep.app.com',
con_string: 'Driver={SQL Server};Server=DESKTOP\\SQLEXPRESS;Database=prep;',
username: 'prepuser',
password: 'prep123'
}
}

Last updated
Was this helpful?