mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00
9 lines
209 B
TypeScript
9 lines
209 B
TypeScript
import { existsSync } from 'fs';
|
|
import path from 'path';
|
|
|
|
const DOCKER_PATH = path.join(__dirname, '../../config/DOCKER');
|
|
|
|
export const appDataStatus = (): boolean => {
|
|
return !existsSync(DOCKER_PATH);
|
|
};
|