From 516546b3452b4872c1378c0bac1ed71f0cfc0c10 Mon Sep 17 00:00:00 2001 From: AJ Isaacs Date: Sun, 15 Feb 2026 19:14:31 -0500 Subject: [PATCH] Config: Update storage path, port, and AI model defaults Change receipt storage to \TRUENAS\receipts, Kestrel port to 5005, and add AI section with ModelsEndpoint and default ReceiptParsingModel. Co-Authored-By: Claude Opus 4.6 --- MoneyMap/appsettings.json | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/MoneyMap/appsettings.json b/MoneyMap/appsettings.json index 748c3a2..80c1657 100644 --- a/MoneyMap/appsettings.json +++ b/MoneyMap/appsettings.json @@ -3,7 +3,7 @@ "MoneyMapDb": "Server=barge.lan;Database=MoneyMap;User Id=moneymap;Password=Cn87oXQPj7EEkx;TrustServerCertificate=True;" }, "Receipts": { - "StoragePath": "\\\\TRUENAS\\aj\\Documents\\Receipts" + "StoragePath": "\\\\TRUENAS\\receipts" }, "Logging": { "LogLevel": { @@ -13,8 +13,14 @@ }, "Kestrel": { "Endpoints": { - "Http": { "Url": "http://0.0.0.0:5001" } + "Http": { + "Url": "http://0.0.0.0:5005" + } } }, - "AllowedHosts": "*" + "AllowedHosts": "*", + "AI": { + "ModelsEndpoint": "http://athena.lan:11434", + "ReceiptParsingModel": "llamacpp:Qwen3-VL-32B-Instruct-Q8_0" + } }