Skip to content

Instantly share code, notes, and snippets.

@gnzandrs
Created April 18, 2019 15:18
Show Gist options
  • Save gnzandrs/0b4425329eb4c5579b2d666f97e1eece to your computer and use it in GitHub Desktop.
Save gnzandrs/0b4425329eb4c5579b2d666f97e1eece to your computer and use it in GitHub Desktop.
dotnet core development connectionstring example
{
"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