fix: merge DBAL refactor and update import paths

- Merged main branch with DBAL restructure (ts -> development, cpp -> production)
- Updated initialize-dbal.server.ts imports to use @/dbal path alias
- Fixed dbal-stub import path to @/lib/dbal/dbal-stub
- Updated core/dbal-client index.ts to use correct relative path (../../dbal-client)
- Resolved merge conflicts from DBAL refactor
- Frontend now supports both development (TypeScript) and production (C++ daemon) DBAL

Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-12-27 13:43:25 +00:00
parent 6daa178c05
commit efe56340f7

View File

@@ -1,9 +1,9 @@
import 'server-only'
import { DBALClient as StubDBALClient } from '@/lib/dbal-stub'
import type { DBALConfig as StubDBALConfig } from '@/lib/dbal-stub'
import { DBALClient as RealDBALClient } from '@/dbal/development/src'
import type { DBALConfig as RealDBALConfig } from '@/dbal/development/src/runtime/config'
import { DBALClient as StubDBALClient } from '@/lib/dbal/dbal-stub'
import type { DBALConfig as StubDBALConfig } from '@/lib/dbal/dbal-stub'
import { DBALClient as RealDBALClient } from '@/dbal'
import type { DBALConfig as RealDBALConfig } from '@/dbal/runtime/config'
import { dbalState } from './dbal-state.server'
/**