We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a1a0e0 commit dea87e9Copy full SHA for dea87e9
apps/insights/src/config/server.ts
@@ -46,10 +46,8 @@ export const AMPLITUDE_API_KEY = defaultInProduction(
46
"6faa78c51eff33087eb19f0f3dc76f33",
47
);
48
export const CLICKHOUSE = {
49
- url:
50
- process.env.CLICKHOUSE_URL ??
51
- "https://oxcuvjrqq7.eu-west-2.aws.clickhouse.cloud:8443",
52
- username: process.env.CLICKHOUSE_USERNAME ?? "insights",
+ url: demand("CLICKHOUSE_URL"),
+ username: demand("CLICKHOUSE_USERNAME"),
53
password: demand("CLICKHOUSE_PASSWORD"),
54
};
55
0 commit comments