30 lines
758 B
JSON
30 lines
758 B
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"AllowedHosts": "*",
|
|
|
|
//程序启动地址,*代表全部网口
|
|
"StartUrl": "http://*:19002",
|
|
|
|
//数据库类型列表
|
|
"DbList": [ "Sqlite", "Mysql", "Sqlserver", "Oracle" ],
|
|
|
|
"DbConnOptions": {
|
|
"Url": "DataSource=yi-sqlsugar-dev.db",
|
|
"DbType": "Sqlite",
|
|
"EnabledDbSeed": false,
|
|
"EnabledReadWrite": false,
|
|
"EnabledCodeFirst": false,
|
|
"EntityAssembly": null,
|
|
"ReadUrl": [
|
|
"DataSource=[xxxx]", //sqlite
|
|
"server=[xxxx];port=3306;database=[xxxx];user id=[xxxx];password=[xxxx]", //mysql
|
|
"Data Source=[xxxx];Initial Catalog=[xxxx];User ID=[xxxx];password=[xxxx]" //sqlserver
|
|
]
|
|
}
|
|
}
|