-
Notifications
You must be signed in to change notification settings - Fork 31
created build for agenticfirst prod #1316
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
thakaresakshi121
wants to merge
4
commits into
development
Choose a base branch
from
prod-agentic-config
base: development
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,35 @@ const configEnv = { | |
}, | ||
}, | ||
}, | ||
test_agenticfirst: { | ||
port: '3030', | ||
urls: { | ||
applozicBaseUrl: 'https://chat-test.kommunicate.io', | ||
kommunicateBaseUrl: 'https://api-test.kommunicate.io', | ||
botPlatformApi: 'https://bots-test.kommunicate.io', | ||
hostUrl: 'https://widget-test.agenticfirst.ai', | ||
dashboardUrl: 'https://app-test.agenticfirst.ai', | ||
}, | ||
pluginProperties: { | ||
pseudoNameEnabled: true, | ||
}, | ||
thirdPartyIntegration: { | ||
sentry: { | ||
nameSpace: '0494b01c401dbac92222bf85f41e26a0', | ||
dsn: | ||
'https://0494b01c401dbac92222bf85f41e26a0@o4508295387480064.ingest.us.sentry.io/4508295388790784', | ||
enabled: true, | ||
PROJECT: 'test-widget', | ||
ORG: 'km-test', | ||
AUTH_TOKEN: | ||
'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', | ||
}, | ||
aws: { | ||
cdnUrl: 'https://cdn-test.kommunicate.io', | ||
bucket: 'kom-test-cdn', | ||
}, | ||
}, | ||
}, | ||
test: { | ||
port: '3030', | ||
urls: { | ||
|
@@ -147,6 +176,34 @@ const configEnv = { | |
}, | ||
}, | ||
}, | ||
prod_agenticfirst: { | ||
port: '3030', | ||
urls: { | ||
applozicBaseUrl: 'https://chat.kommunicate.io', | ||
kommunicateBaseUrl: 'https://api.kommunicate.io', | ||
botPlatformApi: 'https://bots.kommunicate.io', | ||
hostUrl: 'https://widget.agenticfirst.ai', | ||
dashboardUrl: 'https://app.agenticfirst.ai', | ||
}, | ||
pluginProperties: { | ||
pseudoNameEnabled: true, | ||
}, | ||
thirdPartyIntegration: { | ||
sentry: { | ||
nameSpace: '9f71614ef8184d0cab00074555dad9a7', | ||
dsn: 'https://[email protected]/1321911', | ||
enabled: true, | ||
AUTH_TOKEN: | ||
'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', | ||
PROJECT: 'chat-widget', | ||
ORG: 'applozic', | ||
}, | ||
aws: { | ||
cdnUrl: 'https://cdn.kommunicate.io', | ||
bucket: 'kom-prod-cdn', | ||
}, | ||
}, | ||
}, | ||
prod_cn: { | ||
port: '3030', | ||
urls: { | ||
|
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Verification agent
🧩 Analysis chain
Verify environment naming and matching npm script.
Please ensure that the
_BUILD_ENV
valueprod_agenticfirst
aligns exactly with the npm script name inpackage.json
(e.g.,build-prod-agenticfirst
). In addition, consider standardizing on hyphens (prod-agenticfirst
) instead of underscores to stay consistent with other environment identifiers (prod-in
,prod-eu
, etc.) and avoid confusion.Run this snippet to confirm the script’s presence:
🏁 Script executed:
Length of output: 163
Standardize Environment Naming and Confirm npm Script
Confirmed that the
build-prod-agenticfirst
script exists inpackage.json
(line 18) and matches the current_BUILD_ENV
value. To maintain consistency with other environments (e.g.,prod-in
,prod-eu
), rename underscores to hyphens throughout:• In cloudbuild.yaml (lines 42–43):
_BUILD_ENV
check fromprod_agenticfirst
→prod-agenticfirst
• In package.json (line 18):
NODE_ENV=prod_agenticfirst
→NODE_ENV=prod-agenticfirst
Proposed diffs:
📝 Committable suggestion
🧰 Tools
🪛 YAMLlint (1.35.1)
[error] 42-42: trailing spaces
(trailing-spaces)