- Add sidebar dashboard navigation and support multiple dashboards - Extract catalog grid/form logic to reusable CatalogsGrid component - Add CatalogApiClient and DTOs for catalog CRUD operations - Define dashboards with JSON data sources (Default, CatalogsGrid) - Update configuration for dashboard and API endpoints - Improve styling and imports for modularity and maintainability
34 lines
859 B
JSON
34 lines
859 B
JSON
{
|
|
"ConnectionStrings": {
|
|
"DefaultConnection": "Server=SDD-VMP04-SQL17\\DD_DEVELOP01;Database=DD_ECM;User Id=sa;Password=dd;TrustServerCertificate=True;"
|
|
},
|
|
"Dashboard": {
|
|
"BaseUrl": "https://localhost:7204"
|
|
},
|
|
"Cors": {
|
|
"AllowedOrigins": [
|
|
"https://localhost:7276",
|
|
"http://localhost:5101"
|
|
]
|
|
},
|
|
"TableConfigurations": {
|
|
"VwmyCatalog": {
|
|
"ViewName": "VWMY_CATALOG",
|
|
"GuidColumnName": "GUID",
|
|
"CatTitleColumnName": "CAT_TITLE",
|
|
"CatStringColumnName": "CAT_STRING",
|
|
"AddedWhoColumnName": "ADDED_WHO",
|
|
"AddedWhenColumnName": "ADDED_WHEN",
|
|
"ChangedWhoColumnName": "CHANGED_WHO",
|
|
"ChangedWhenColumnName": "CHANGED_WHEN"
|
|
}
|
|
},
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"AllowedHosts": "*"
|
|
}
|