feature/IO-3255-simplified-parts-management - Checkpoint

This commit is contained in:
Dave Richer
2025-07-17 12:48:30 -04:00
parent 931fa4b82b
commit 53a559b126
3 changed files with 12 additions and 1 deletions

2
.gitignore vendored
View File

@@ -130,3 +130,5 @@ test-output.txt
server/job/test/fixtures server/job/test/fixtures
.github .github
_reference/ragmate/.ragmate.env
docker_data

View File

@@ -0,0 +1,10 @@
services:
ragmate:
image: ghcr.io/ragmate/ragmate:latest
ports:
- "11434:11434"
env_file:
- .ragmate.env
volumes:
- .:/project
- ./docker_data/ragmate:/apps/cache

View File

@@ -557,7 +557,6 @@ const vehicleDamageEstimateAddRq = async (req, res) => {
return res.status(200).json({ success: true, jobId: newJob.id }); return res.status(200).json({ success: true, jobId: newJob.id });
} catch (err) { } catch (err) {
logger.log("parts-route-error", "error", null, null, { error: err }); logger.log("parts-route-error", "error", null, null, { error: err });
console.dir({ err });
return res.status(err.status || 500).json({ error: err.message || "Internal error" }); return res.status(err.status || 500).json({ error: err.message || "Internal error" });
} }
}; };