mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-03-18 22:33:08 +00:00
Fix agent output validation to prevent false verified status (#807)
* Changes from fix/cursor-fix * feat: Enhance provider error messages with diagnostic context, address test failure, fix port change, move playwright tests to different port * Update apps/ui/src/components/views/board-view/dialogs/add-feature-dialog.tsx Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * ci: Update test server port from 3008 to 3108 and add environment configuration * fix: Correct typo in health endpoint URL and standardize port env vars --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
This commit is contained in:
@@ -9,8 +9,19 @@
|
||||
|
||||
/**
|
||||
* Base URL for the API server
|
||||
* Uses TEST_SERVER_PORT env var (default 3108) for test runs
|
||||
*/
|
||||
export const API_BASE_URL = 'http://localhost:3008';
|
||||
export const API_BASE_URL = process.env.TEST_SERVER_PORT
|
||||
? `http://localhost:${process.env.TEST_SERVER_PORT}`
|
||||
: 'http://localhost:3108';
|
||||
|
||||
/**
|
||||
* Base URL for the frontend web server
|
||||
* Uses TEST_PORT env var (default 3107) for test runs
|
||||
*/
|
||||
export const WEB_BASE_URL = process.env.TEST_PORT
|
||||
? `http://localhost:${process.env.TEST_PORT}`
|
||||
: 'http://localhost:3107';
|
||||
|
||||
/**
|
||||
* API endpoints for worktree operations
|
||||
|
||||
Reference in New Issue
Block a user