some lil fixes
All checks were successful
ci / Image build (push) Successful in 2m19s
ci / Deployment (push) Successful in 23s

This commit is contained in:
Joris Bertomeu
2024-10-02 18:00:05 +02:00
parent 8e57d724be
commit 0a115b49e1
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ var mpdParser = require('mpd-parser');
const softwareService = require('./services/softwares');
const BASE_PATH = process.env.DATA_PATH || `./data`;
const OUTPUT_PATH = `${BASE_PATH}/output`;
const OUTPUT_PATH = process.env.OUTPUT_PATH || `${BASE_PATH}/output`;
const TMP_PATH = `${BASE_PATH}/tmp`;
const app = express();