mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-13 08:15:14 +02:00
fix: update ktx CI boundary checks (#223)
This commit is contained in:
parent
0eeac6f980
commit
bc7373fa8e
5 changed files with 6 additions and 110 deletions
|
|
@ -40,6 +40,7 @@ import {
|
|||
} from './setup-prompts.js';
|
||||
|
||||
const HISTORIC_SQL_WORK_UNIT_MAX_CONCURRENCY = 6;
|
||||
const KTX_QUICKSTART_URL = 'https://docs.kaelio.com/ktx/docs/getting-started/quickstart';
|
||||
const execFileAsync = promisify(execFileCallback);
|
||||
|
||||
export type KtxSetupDatabaseDriver =
|
||||
|
|
@ -1782,7 +1783,7 @@ async function chooseDrivers(
|
|||
}
|
||||
const initialValues = unique(options?.initialDrivers ?? []);
|
||||
createKtxSetupUiAdapter().note(
|
||||
'Get demo credentials at https://kaelio.com/start',
|
||||
`Get demo credentials from the Quickstart: ${KTX_QUICKSTART_URL}`,
|
||||
'🎁 Need a warehouse to play with?',
|
||||
io,
|
||||
);
|
||||
|
|
|
|||
|
|
@ -170,6 +170,7 @@ export interface KtxSetupDeps {
|
|||
}
|
||||
|
||||
const SOURCE_DRIVERS = new Set(['dbt', 'metricflow', 'metabase', 'looker', 'lookml', 'notion']);
|
||||
const KTX_DOCS_URL = 'https://docs.kaelio.com/ktx';
|
||||
|
||||
type KtxSetupEntryAction = 'setup' | 'new-project' | 'agents' | 'status' | 'demo' | 'exit';
|
||||
type KtxSetupFlowStep = 'models' | 'embeddings' | 'databases' | 'sources' | 'runtime' | 'context' | 'agents';
|
||||
|
|
@ -586,7 +587,7 @@ export async function runKtxSetup(args: KtxSetupArgs, io: KtxCliIo, deps: KtxSet
|
|||
async function runKtxSetupInner(args: KtxSetupArgs, io: KtxCliIo, deps: KtxSetupDeps = {}): Promise<number> {
|
||||
const setupUi = deps.setupUi ?? createKtxSetupUiAdapter();
|
||||
setupUi.intro('KTX setup', io);
|
||||
setupUi.note('https://docs.kaelio.com/ktx', '📚 Docs', io);
|
||||
setupUi.note(KTX_DOCS_URL, '📚 Docs', io);
|
||||
let entryAction: KtxSetupEntryAction | undefined;
|
||||
let projectResult: Awaited<ReturnType<typeof runKtxSetupProjectStep>>;
|
||||
let agentNextActions: string | undefined;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue