ecosystem.config.d.ts 396 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
declare type App = {
    name: string;
    script: string;
    cwd: string;
    args: string;
    instances: number;
    autorestart: boolean;
    watch: boolean;
    exec_mode: string;
    max_memory_restart: string;
    wait_ready: boolean;
    env: {
        [key: string]: string;
        NODE_ENV: string;
    };
};

declare const ecosystem: {
    apps: App[];
};

export default ecosystem;