MCPcopy Index your code
hub / github.com/quarto-dev/quarto-cli / ProjectCreateOptions

Interface ProjectCreateOptions

src/project/project-create.ts:30–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28import { copyTo } from "../core/copy.ts";
29
30export interface ProjectCreateOptions {
31 dir: string;
32 type: string;
33 title: string;
34 scaffold: boolean;
35 engine: string;
36 kernel?: string;
37 editor?: string;
38 venv?: boolean;
39 condaenv?: boolean;
40 envPackages?: string[];
41 template?: string;
42 quiet?: boolean;
43}
44
45export async function projectCreate(options: ProjectCreateOptions) {
46 // read and validate options

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected