feature/IO-3255-simplified-parts-management - Checkpoint
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -130,3 +130,5 @@ test-output.txt
|
|||||||
server/job/test/fixtures
|
server/job/test/fixtures
|
||||||
|
|
||||||
.github
|
.github
|
||||||
|
_reference/ragmate/.ragmate.env
|
||||||
|
docker_data
|
||||||
|
|||||||
10
_reference/ragmate/local-rag-compose.yml
Normal file
10
_reference/ragmate/local-rag-compose.yml
Normal 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
|
||||||
@@ -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" });
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user