Created
April 18, 2019 15:18
-
-
Save gnzandrs/0b4425329eb4c5579b2d666f97e1eece to your computer and use it in GitHub Desktop.
dotnet core development connectionstring example
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
{ | |
"Logging": { | |
"LogLevel": { | |
"Default": "Debug", | |
"System": "Information", | |
"Microsoft": "Information" | |
} | |
}, | |
"AllowedHosts": "*", | |
"ConnectionStrings": { | |
"DefaultConnection": "data source=IP_DB,PUERTO_DB;initial catalog=NOMBRE_DB;user id=USUARIO_DB;password=CONTRASEÑA_DB;" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment