feat: Implement AI Gateway page with feature tiles and descriptions

feat: Update AppSidebar to include new Environments and Credentials sections

feat: Enhance node form with branch selection for triggers and deployment

feat: Create CredentialForm and CredentialRow components for managing credentials

feat: Add API endpoints for credential management

fix: Update node catalog defaults for deploy and promote nodes
This commit is contained in:
patel-lyzr
2026-05-13 22:15:08 +05:30
parent 22a0fc694d
commit 1766bdf497
32 changed files with 3982 additions and 256 deletions
+6 -3
View File
@@ -160,10 +160,12 @@ func serve() int {
}
}
// Register executors now that storage is ready; the Build executor
// reads from AgentStore.
// Register executors now that storage is ready; Build reads from
// AgentStore for clone targets, Deploy looks up cloud credentials
// (agent-scoped first, global fallback).
executors.RegisterAll(executors.RegistryDeps{
Agents: mongo.Agents(),
Agents: mongo.Agents(),
Credentials: mongo.Credentials(),
})
lookup = executors.BuildLookup()
@@ -216,6 +218,7 @@ func serve() int {
Pipelines: mongo.Pipelines(),
Runs: mongo.Runs(),
Agents: mongo.Agents(),
Credentials: mongo.Credentials(),
Events: eventBus,
Logs: logs,
}),