Rendering: Add configurable Jose endpoint

This commit is contained in:
2023-06-08 10:13:03 +02:00
parent a98f5e0ebc
commit 46bc9ae711
2 changed files with 4 additions and 2 deletions

View File

@@ -9,4 +9,5 @@ DB_ROOTPW=
DB_PORT=
API_PORT=3080
API_ACCESS_TOKEN=
HOMEPAGE_URL=
HOMEPAGE_URL=
JOSE_ENDPOINT=

View File

@@ -1,3 +1,4 @@
require("dotenv").config();
const sharp = require('sharp');
const crypto = require('crypto');
const fs = require('fs');
@@ -105,7 +106,7 @@ module.exports = {
}
console.log("Fetching ", );
let { data } = await axios.post('https://jose.toho.mnz.gg/jobs', job);
let { data } = await axios.post(`${process.env.JOSE_ENDPOINT}/jobs`, job);
console.log("Fetched ", data);
return data["path"];