Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
# ║ Choose ONE option: JSON dump, TCP database, or HTTP database. ║
# ╚══════════════════════════════════════════════════════════════════════════╝

# LAN / remote dev: set this machine's IP so the dev server accepts cross-origin requests
# NEXT_DEV_ALLOWED_ORIGINS=10.112.9.49
# LAN / remote dev: set this machine's hostname so the dev server accepts cross-origin requests
# NEXT_DEV_ALLOWED_ORIGINS=dev-machine.local

# Option A: JSON dump (no database needed)
# Download a DB dump release, unzip it, and point this to the directory.
Expand All @@ -26,6 +26,9 @@
# Create at: https://github.com/settings/personal-access-tokens
# GITHUB_TOKEN=

# CollectiveX public artifact store (serves only the store's public/ tree)
# COLLECTIVEX_STORE_ROOT=/absolute/path/to/collectivex-store

# ╔══════════════════════════════════════════════════════════════════════════╗
# ║ Production deployment (Vercel) ║
# ║ ║
Expand Down
6 changes: 6 additions & 0 deletions packages/app/cypress/component/tab-nav.cy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ describe('TabNav — unofficialrun URL preservation (issue #319)', () => {
'href',
'/submissions?unofficialruns=12345',
);
cy.get('[data-testid="tab-trigger-collectivex"]').should(
'have.attr',
'href',
'/collectivex?unofficialruns=12345',
);
cy.get('[data-testid="tab-trigger-historical"]').should(
'have.attr',
'href',
Expand Down Expand Up @@ -109,6 +114,7 @@ describe('TabNav — Hidden popover for gated tabs', () => {
mountTabNav({});
cy.get('[data-testid="tab-trigger-inference"]').should('exist');
cy.get('[data-testid="tab-trigger-gpu-specs"]').should('exist');
cy.get('[data-testid="tab-trigger-collectivex"]').should('exist');
cy.get('[data-testid="tab-trigger-submissions"]').should('exist');
cy.get('[data-testid="tab-trigger-hidden"]').should('not.exist');
cy.get('[data-testid="tab-trigger-feedback"]').should('not.exist');
Expand Down
8 changes: 4 additions & 4 deletions packages/app/cypress/e2e/agentic-point-time-series.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,10 +245,10 @@ describe('Agentic point orchestrator metric sources', () => {
beforeEach(() => {
const prefill = sourceSeries(
{
id: 'dynamo|prefill|10.30.1.56:7500|prefill-a|0|0',
id: 'dynamo|prefill|prefill-a.internal.test:7500|prefill-a|0|0',
adapter: 'dynamo',
role: 'prefill',
endpointUrl: '10.30.1.56:7500',
endpointUrl: 'prefill-a.internal.test:7500',
nativeRole: 'prefill',
workerId: 'prefill-a',
dpRank: '0',
Expand All @@ -259,10 +259,10 @@ describe('Agentic point orchestrator metric sources', () => {
);
const decode = sourceSeries(
{
id: 'dynamo|decode|10.30.1.206:7516|decode-a|0|0',
id: 'dynamo|decode|decode-a.internal.test:7516|decode-a|0|0',
adapter: 'dynamo',
role: 'decode',
endpointUrl: '10.30.1.206:7516',
endpointUrl: 'decode-a.internal.test:7516',
nativeRole: 'backend',
workerId: 'decode-a',
dpRank: '0',
Expand Down
Loading