TMP_FOLDER configurable

https://github.com/jambonz/speech-utils/issues/118
This commit is contained in:
Vinod Dharashive
2025-07-10 15:01:08 +05:30
committed by GitHub
parent 2608e149a8
commit fad0f57b13

View File

@@ -9,7 +9,7 @@ const JAMBONES_HTTP_PROXY_PORT = process.env.JAMBONES_HTTP_PROXY_PORT;
const JAMBONES_TTS_CACHE_DURATION_MINS =
(parseInt(process.env.JAMBONES_TTS_CACHE_DURATION_MINS) || 4 * 60) * 60; // cache tts for 4 hours
const TMP_FOLDER = '/tmp';
const TMP_FOLDER = process.env.JAMBONES_TMP_FOLDER || '/tmp';
const HTTP_TIMEOUT = 5000;