AVS-Carton-Shipment-Verifier/appsettings.json

37 lines
969 B
JSON

{
"ConnectionStrings": {},
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://localhost:5000"
}
}
},
"DesktopHost": {
"LaunchBrowser": true,
"BrowserUrl": "http://127.0.0.1:5000",
"ExitWhenBrowserCloses": true,
"BrowserShutdownDelaySeconds": 2,
"PreferAppModeBrowser": true,
"BrowserUserDataDir": "C:\\Users\\Public\\AVSCartonShipmentVerifier\\browser-profile",
"MinimumBrowserProcessLifetimeSeconds": 5
},
"CartonVerification": {
"TableName": "carton_verification_log",
"QrColumnName": "qr",
"MovedToWarehouseColumnName": "moved_to_warehouse",
"MovedToWarehouseAtColumnName": "moved_to_warehouse_at"
},
"ScanHistory": {
"DatabasePath": "C:\\Users\\Public\\AVSCartonShipmentVerifier\\scan-history.db",
"MaxRecordsToKeep": 500
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}