mirror of
https://github.com/immich-app/immich.git
synced 2025-01-10 13:56:47 +01:00
2400004f41
* feat: organize media folders * fix: tests
29 lines
903 B
TypeScript
29 lines
903 B
TypeScript
import { BadRequestException } from '@nestjs/common';
|
|
import pkg from '../../../package.json';
|
|
|
|
const [major, minor, patch] = pkg.version.split('.');
|
|
|
|
export interface IServerVersion {
|
|
major: number;
|
|
minor: number;
|
|
patch: number;
|
|
}
|
|
|
|
export const serverVersion: IServerVersion = {
|
|
major: Number(major),
|
|
minor: Number(minor),
|
|
patch: Number(patch),
|
|
};
|
|
|
|
export const SERVER_VERSION = `${serverVersion.major}.${serverVersion.minor}.${serverVersion.patch}`;
|
|
|
|
export const APP_MEDIA_LOCATION = process.env.IMMICH_MEDIA_LOCATION || './upload';
|
|
|
|
export const MACHINE_LEARNING_URL = process.env.IMMICH_MACHINE_LEARNING_URL || 'http://immich-machine-learning:3003';
|
|
export const MACHINE_LEARNING_ENABLED = MACHINE_LEARNING_URL !== 'false';
|
|
|
|
export function assertMachineLearningEnabled() {
|
|
if (!MACHINE_LEARNING_ENABLED) {
|
|
throw new BadRequestException('Machine learning is not enabled.');
|
|
}
|
|
}
|