mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
bee70690bb
Migrate the copilotkit CLI (npx copilotkit create/init/dev) from CopilotCloud into packages/v1/cli. TEMPLATE_REPOS updated to use monorepo subdirectory sparse checkout for all CopilotKit-owned templates, with tarball fallback for external repos (ag2).
9 lines
290 B
JavaScript
Executable File
9 lines
290 B
JavaScript
Executable File
#!/usr/bin/env -S node --loader ts-node/esm --disable-warning=ExperimentalWarning
|
|
|
|
// eslint-disable-next-line n/shebang
|
|
import {execute} from '@oclif/core'
|
|
|
|
process.env.SENTRY_DISABLED = 'true'
|
|
process.env.SEGMENT_DISABLED = 'true'
|
|
await execute({development: true, dir: import.meta.url})
|