Skip to content

Instantly share code, notes, and snippets.

@AndriiTsok
Created November 3, 2015 12:56
Show Gist options
  • Save AndriiTsok/d5fe840d8bd9e6196179 to your computer and use it in GitHub Desktop.
Save AndriiTsok/d5fe840d8bd9e6196179 to your computer and use it in GitHub Desktop.
ASP.NET 5 Identity configuration file.
{
"DefaultAdminUsername": "Administrator",
"DefaultAdminPassword": "12345",
"Data": {
"IdentityConnection": {
"Connectionstring": "Server=(localdb)\\mssqllocaldb;Database=IdentityMvc-2-20-15-3;Trusted_Connection=True;MultipleActiveResultSets=true"
}
},
"Identity": {
"Password": {
"RequireDigit" : "false",
"RequireLowercase" : "false",
"RequireUppercase" : "false",
"RequireNonLetterOrDigit" : "false"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment