1
0
Fork 0
mirror of synced 2024-09-29 08:41:16 +13:00

Default to package.json

This commit is contained in:
Adria Navarro 2023-10-23 12:23:44 +02:00
parent e7459bb5e7
commit 4ee1fd0f7a

View file

@ -49,6 +49,7 @@ function httpLogging() {
}
function getPackageJsonFields(): {
VERSION: string
SERVICE_NAME: string
} {
function findFileInAncestors(
@ -74,11 +75,12 @@ function getPackageJsonFields(): {
const content = readFileSync(packageJsonFile!, "utf-8")
const parsedContent = JSON.parse(content)
return {
VERSION: process.env.VERSION || parsedContent.version,
SERVICE_NAME: parsedContent.name,
}
} catch {
// throwing an error here is confusing/causes backend-core to be hard to import
return { SERVICE_NAME: "" }
return { VERSION: process.env.VERSION || "", SERVICE_NAME: "" }
}
}
@ -171,7 +173,6 @@ const environment = {
ENABLE_SSO_MAINTENANCE_MODE: selfHosted
? process.env.ENABLE_SSO_MAINTENANCE_MODE
: false,
VERSION: process.env.VERSION!,
...getPackageJsonFields(),
DISABLE_PINO_LOGGER: process.env.DISABLE_PINO_LOGGER,
OFFLINE_MODE: process.env.OFFLINE_MODE,