File tree Expand file tree Collapse file tree 2 files changed +18
-3
lines changed
Expand file tree Collapse file tree 2 files changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,18 @@ GOOGLE_CLIENT_SECRET=
1111MICROSOFT_CLIENT_ID =
1212MICROSOFT_CLIENT_SECRET =
1313
14+ # Zoom OAuth (optional)
15+ ZOOM_CLIENT_ID =
16+ ZOOM_CLIENT_SECRET =
17+
1418# Google Places API (optional)
1519GOOGLE_MAPS_API_KEY =
20+ NEXT_PUBLIC_GOOGLE_MAPS_API_KEY =
21+
22+ # Vercel (optional)
23+ VERCEL_URL =
24+ NEXT_PUBLIC_VERCEL_URL =
25+ NEXT_PUBLIC_VERCEL_ENV = " development"
1626
1727# Upstash Redis or Redis HTTP proxy
1828UPSTASH_REDIS_REST_URL = " http://localhost:8079"
@@ -29,4 +39,9 @@ SRH_CONNECTION_STRING="redis://redis:6379"
2939
3040# Marble Blog (optional)
3141MARBLE_WORKSPACE_KEY =
32- MARBLE_API_URL = https://api.marblecms.com
42+ MARBLE_API_URL = https://api.marblecms.com
43+
44+ # AI integrations (optional)
45+ COMPOSIO_API_KEY =
46+ FIRECRAWL_API_KEY =
47+ BROWSERBASE_API_KEY =
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ export const trpc = createTRPCClient<AppRouter>({
4848 links : [
4949 loggerLink ( {
5050 enabled : ( op ) =>
51- process . env . NEXT_PUBLIC_ENV === "development" ||
51+ env . NEXT_PUBLIC_ENV === "development" ||
5252 ( op . direction === "down" && op . result instanceof Error ) ,
5353 } ) ,
5454 httpBatchStreamLink ( {
@@ -77,7 +77,7 @@ export function TRPCReactProvider(props: Readonly<TRPCReactProviderProps>) {
7777 links : [
7878 loggerLink ( {
7979 enabled : ( op ) =>
80- process . env . NEXT_PUBLIC_ENV === "development" ||
80+ env . NEXT_PUBLIC_ENV === "development" ||
8181 ( op . direction === "down" && op . result instanceof Error ) ,
8282 } ) ,
8383 httpBatchStreamLink ( {
You can’t perform that action at this time.
0 commit comments