MCPcopy Create free account
hub / github.com/Openpanel-dev/openpanel / getIsCluster

Function getIsCluster

packages/db/code-migrations/helpers.ts:17–24  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

15}
16
17export function getIsCluster() {
18 const args = process.argv;
19 return (
20 args.includes('--cluster') ||
21 process.env.CLICKHOUSE_CLUSTER === 'true' ||
22 process.env.CLICKHOUSE_CLUSTER === '1'
23 );
24}
25
26export function getIsSelfHosting() {
27 return process.env.SELF_HOSTED === 'true' || !!process.env.SELF_HOSTED;

Callers 15

upFunction · 0.90
upFunction · 0.90
upFunction · 0.90
upFunction · 0.90
upFunction · 0.90
downFunction · 0.90
upFunction · 0.90
upFunction · 0.90
downFunction · 0.90
upFunction · 0.90
upFunction · 0.90
upFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected