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 dea87e9 commit 6526fa2Copy full SHA for 6526fa2
apps/insights/src/config/server.ts
@@ -46,8 +46,10 @@ export const AMPLITUDE_API_KEY = defaultInProduction(
46
"6faa78c51eff33087eb19f0f3dc76f33",
47
);
48
export const CLICKHOUSE = {
49
- url: demand("CLICKHOUSE_URL"),
50
- username: demand("CLICKHOUSE_USERNAME"),
+ url:
+ process.env.CLICKHOUSE_URL ??
51
+ "https://ryf56suqpb.eu-west-2.aws.clickhouse.cloud:8443",
52
+ username: process.env.CLICKHOUSE_USERNAME ?? "ui_user",
53
password: demand("CLICKHOUSE_PASSWORD"),
54
};
55
0 commit comments