Created
July 3, 2019 01:56
-
-
Save hiukky/5edce3a8db97dd3f982eccc7ef74e54a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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