doc: appsettings.Development.json 增加 DB 小节配置
This commit is contained in:
parent
a53233e930
commit
2e923257cc
|
@ -16,6 +16,40 @@
|
|||
}
|
||||
},
|
||||
"SwaggerPathBase": "",
|
||||
"DB": [
|
||||
{
|
||||
"Enabled": false
|
||||
},
|
||||
{
|
||||
"Enabled": true,
|
||||
"ProviderName": "Sqlite",
|
||||
"ConnectionStrings": {
|
||||
"ba": "Data Source=BootstrapAdmin.db;"
|
||||
}
|
||||
},
|
||||
{
|
||||
"Enabled": false,
|
||||
"ProviderName": "MySql",
|
||||
"ConnectionStrings": {
|
||||
"ba": "Server=localhost;Database=BA;Uid=argozhang;Pwd=argo@163.com;SslMode=none;"
|
||||
}
|
||||
},
|
||||
{
|
||||
"Enabled": false,
|
||||
"ProviderName": "Npgsql",
|
||||
"ConnectionStrings": {
|
||||
"ba": "Server=localhost;Database=BootstrapAdmin;User ID=argozhang;Password=argo@163.com;"
|
||||
}
|
||||
},
|
||||
{
|
||||
"Enabled": false,
|
||||
"Widget": "Bootstrap.DataAccess.MongoDB",
|
||||
"ProviderName": "MongoDB",
|
||||
"ConnectionStrings": {
|
||||
"ba": "mongodb://localhost:27017;Database=BootstrapAdmin"
|
||||
}
|
||||
}
|
||||
],
|
||||
"AllowOrigins": "http://localhost:49185",
|
||||
"LongbowCache": {
|
||||
"Enabled": true,
|
||||
|
|
Loading…
Reference in New Issue