fix(repo): add missing env variables to .env.example#453
Merged
JeanMeijer merged 1 commit intomainfrom Mar 25, 2026
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
There was a problem hiding this comment.
2 issues found across 2 files
Prompt for AI agents (unresolved issues)
Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.
<file name=".env.example">
<violation number="1" location=".env.example:14">
P2: Zoom variables are marked optional, but the runtime env schema requires them.</violation>
<violation number="2" location=".env.example:45">
P2: The AI integrations section is labeled optional, but FIRECRAWL and BROWSERBASE keys are required by env validation.</violation>
</file>
Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.
| MARBLE_API_URL=https://api.marblecms.com | ||
|
|
||
| # AI integrations (optional) | ||
| COMPOSIO_API_KEY= |
Contributor
There was a problem hiding this comment.
P2: The AI integrations section is labeled optional, but FIRECRAWL and BROWSERBASE keys are required by env validation.
Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At .env.example, line 45:
<comment>The AI integrations section is labeled optional, but FIRECRAWL and BROWSERBASE keys are required by env validation.</comment>
<file context>
@@ -29,4 +39,9 @@ SRH_CONNECTION_STRING="redis://redis:6379"
+MARBLE_API_URL=https://api.marblecms.com
+
+# AI integrations (optional)
+COMPOSIO_API_KEY=
+FIRECRAWL_API_KEY=
+BROWSERBASE_API_KEY=
</file context>
| MICROSOFT_CLIENT_ID= | ||
| MICROSOFT_CLIENT_SECRET= | ||
|
|
||
| # Zoom OAuth (optional) |
Contributor
There was a problem hiding this comment.
P2: Zoom variables are marked optional, but the runtime env schema requires them.
Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At .env.example, line 14:
<comment>Zoom variables are marked optional, but the runtime env schema requires them.</comment>
<file context>
@@ -11,8 +11,18 @@ GOOGLE_CLIENT_SECRET=
MICROSOFT_CLIENT_ID=
MICROSOFT_CLIENT_SECRET=
+# Zoom OAuth (optional)
+ZOOM_CLIENT_ID=
+ZOOM_CLIENT_SECRET=
</file context>
Suggested change
| # Zoom OAuth (optional) | |
| # Zoom OAuth |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Briefly describe what you did and why.
Screenshots / Recordings
Add screenshots or recordings here to help reviewers understand your changes.
Type of Change
Related Areas
Testing
Checklist
Notes
(Optional) Add anything else you'd like to share.
By submitting, I confirm I understand and stand behind this code. If AI was used, I’ve reviewed and verified everything myself.
Summary by cubic
Filled in missing environment variables in
.env.exampleand switched the web tRPC client to use the validatedenvobject for logger toggling. This fixes local setup gaps and ensures consistent behavior across environments.NEXT_PUBLIC_GOOGLE_MAPS_API_KEY), Vercel URLs (VERCEL_URL,NEXT_PUBLIC_VERCEL_URL,NEXT_PUBLIC_VERCEL_ENV), and AI integrations (COMPOSIO_API_KEY,FIRECRAWL_API_KEY,BROWSERBASE_API_KEY).env.NEXT_PUBLIC_ENVinstead ofprocess.env.NEXT_PUBLIC_ENVfor logger enablement.Written for commit 78c4879. Summary will update on new commits.