Skip to content

Commit 3175df3

Browse files
committed
fix: revert Langfuse placeholder to empty string
1 parent 77d0281 commit 3175df3

2 files changed

Lines changed: 15 additions & 15 deletions

File tree

env.d.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint-disable */
2-
// Generated by Wrangler by running `wrangler types env.d.ts --include-runtime false` (hash: 675c661de64ac3cf65d6f6ef6ae2796b)
2+
// Generated by Wrangler by running `wrangler types env.d.ts --include-runtime false` (hash: b707ecd5ae46ce87d3d42ea6aeb6bd02)
33
declare namespace Cloudflare {
44
interface GlobalProps {
55
mainModule: typeof import("./src/server");
@@ -10,8 +10,8 @@ declare namespace Cloudflare {
1010
VERSION: "@@VERSION@@-ci";
1111
RETURN_STACK_TRACES: "false";
1212
DA_ORIGIN: "https://admin.da.live";
13-
LANGFUSE_PUBLIC_KEY: "configured-as-wrangler-secret";
14-
LANGFUSE_SECRET_KEY: "configured-as-wrangler-secret";
13+
LANGFUSE_PUBLIC_KEY: "";
14+
LANGFUSE_SECRET_KEY: "";
1515
LANGFUSE_BASEURL: "";
1616
AWS_BEARER_TOKEN_BEDROCK: string;
1717
DAADMIN: Fetcher /* da-admin-stage */;
@@ -23,8 +23,8 @@ declare namespace Cloudflare {
2323
VERSION: "@@VERSION@@";
2424
RETURN_STACK_TRACES: "false";
2525
DA_ORIGIN: "https://admin.da.live";
26-
LANGFUSE_PUBLIC_KEY: "configured-as-wrangler-secret";
27-
LANGFUSE_SECRET_KEY: "configured-as-wrangler-secret";
26+
LANGFUSE_PUBLIC_KEY: "";
27+
LANGFUSE_SECRET_KEY: "";
2828
LANGFUSE_BASEURL: "";
2929
AWS_BEARER_TOKEN_BEDROCK: string;
3030
DAADMIN: Fetcher /* da-admin */;
@@ -36,8 +36,8 @@ declare namespace Cloudflare {
3636
VERSION: "0.0.0-dev";
3737
RETURN_STACK_TRACES: "true";
3838
DA_ORIGIN: "http://localhost:8787";
39-
LANGFUSE_PUBLIC_KEY: "configured-as-wrangler-secret";
40-
LANGFUSE_SECRET_KEY: "configured-as-wrangler-secret";
39+
LANGFUSE_PUBLIC_KEY: "";
40+
LANGFUSE_SECRET_KEY: "";
4141
LANGFUSE_BASEURL: "";
4242
AWS_BEARER_TOKEN_BEDROCK: string;
4343
DAADMIN: Fetcher /* da-admin-local */;
@@ -50,8 +50,8 @@ declare namespace Cloudflare {
5050
VERSION?: "@@VERSION@@-ci" | "@@VERSION@@" | "0.0.0-dev";
5151
RETURN_STACK_TRACES?: "false" | "true";
5252
DA_ORIGIN?: "https://admin.da.live" | "http://localhost:8787";
53-
LANGFUSE_PUBLIC_KEY?: "configured-as-wrangler-secret";
54-
LANGFUSE_SECRET_KEY?: "configured-as-wrangler-secret";
53+
LANGFUSE_PUBLIC_KEY?: "";
54+
LANGFUSE_SECRET_KEY?: "";
5555
LANGFUSE_BASEURL?: "";
5656
DAADMIN?: Fetcher /* da-admin-stage */ | Fetcher /* da-admin */ | Fetcher /* da-admin-local */;
5757
DACOLLAB?: Fetcher /* da-collab-stage */ | Fetcher /* da-collab */ | Fetcher /* da-collab-local */;

wrangler.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ ENVIRONMENT = "ci"
2929
VERSION = "@@VERSION@@-ci"
3030
RETURN_STACK_TRACES = "false"
3131
DA_ORIGIN = "https://admin.da.live"
32-
LANGFUSE_PUBLIC_KEY = "configured-as-wrangler-secret"
33-
LANGFUSE_SECRET_KEY = "configured-as-wrangler-secret"
32+
LANGFUSE_PUBLIC_KEY = ""
33+
LANGFUSE_SECRET_KEY = ""
3434
LANGFUSE_BASEURL = ""
3535

3636
# ----------------------------------------------------------------------
@@ -49,8 +49,8 @@ ENVIRONMENT = "production"
4949
VERSION = "@@VERSION@@"
5050
RETURN_STACK_TRACES = "false"
5151
DA_ORIGIN = "https://admin.da.live"
52-
LANGFUSE_PUBLIC_KEY = "configured-as-wrangler-secret"
53-
LANGFUSE_SECRET_KEY = "configured-as-wrangler-secret"
52+
LANGFUSE_PUBLIC_KEY = ""
53+
LANGFUSE_SECRET_KEY = ""
5454
LANGFUSE_BASEURL = ""
5555

5656
# ----------------------------------------------------------------------
@@ -69,6 +69,6 @@ ENVIRONMENT = "dev"
6969
VERSION="0.0.0-dev"
7070
RETURN_STACK_TRACES = "true"
7171
DA_ORIGIN = "http://localhost:8787"
72-
LANGFUSE_PUBLIC_KEY = "configured-as-wrangler-secret"
73-
LANGFUSE_SECRET_KEY = "configured-as-wrangler-secret"
72+
LANGFUSE_PUBLIC_KEY = ""
73+
LANGFUSE_SECRET_KEY = ""
7474
LANGFUSE_BASEURL = ""

0 commit comments

Comments
 (0)