Skip to content

Instantly share code, notes, and snippets.

@hiukky
Created July 3, 2019 01:56
Show Gist options
  • Save hiukky/5edce3a8db97dd3f982eccc7ef74e54a to your computer and use it in GitHub Desktop.
Save hiukky/5edce3a8db97dd3f982eccc7ef74e54a to your computer and use it in GitHub Desktop.
mssql: {
client: 'mssql',
connection: {
host: Env.get('DB_HOST', ''),
port: Env.get('DB_PORT', ''),
user: Env.get('DB_USER', ''),
password: Env.get('DB_PASSWORD', ''),
database: Env.get('DB_DATABASE', ''),
options: {
encrypt: Env.get('DB_ENCRYPT', true)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment