You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
383 B
17 lines
383 B
import { existsSync } from 'fs';
|
|
import path from 'path';
|
|
|
|
const CONFIG_PATH = process.env.CONFIG_DIRECTORY
|
|
? process.env.CONFIG_DIRECTORY
|
|
: path.join(__dirname, '../../config');
|
|
|
|
const DOCKER_PATH = `${CONFIG_PATH}/DOCKER`;
|
|
|
|
export const appDataStatus = (): boolean => {
|
|
return !existsSync(DOCKER_PATH);
|
|
};
|
|
|
|
export const appDataPath = (): string => {
|
|
return CONFIG_PATH;
|
|
};
|