fix: Include exercises.json in src/data for Docker build context

This commit is contained in:
2026-03-06 12:18:15 +01:00
parent 5af6d5c6e5
commit 80654de67b
2 changed files with 288 additions and 1 deletions
@@ -1,6 +1,6 @@
const express = require('express');
const exercisesData = require('../data/exercises.json');
const exercisesData = require('./data/exercises.json');
const OLLAMA_URL = process.env.OLLAMA_URL || 'http://localhost:11434';
const OLLAMA_MODEL = process.env.OLLAMA_MODEL || 'deepseek-v3.2:cloud';