Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions src/content/docs/pages/get-started/c3.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ bun create cloudflare@latest [--] [<DIRECTORY>] [OPTIONS] [-- <NESTED ARGS...>]

- The directory where the application should be created. The name of the application is taken from the directory name.

- `NESTED ARGS..` string\[] optional
- `NESTED ARGS..` <Type text="string[]" /> <MetaInfo text="optional" />

- CLI arguments to pass to eventual third party CLIs C3 might invoke (in the case of full-stack applications).

Expand Down Expand Up @@ -175,11 +175,11 @@ bun create cloudflare@latest [--] [<DIRECTORY>] [OPTIONS] [-- <NESTED ARGS...>]

See the [templates folder](https://github.com/cloudflare/workers-sdk/tree/main/packages/create-cloudflare/templates) of this repo for more examples.

- `--deploy` boolean (default: true) optional
- `--deploy` <Type text="boolean" /> <MetaInfo text="(default: true) optional" />

- Deploy your application after it has been created.

- `--lang`string (default: ts) optional
- `--lang` <Type text="string" /> <MetaInfo text="(default: ts) optional" />

- The programming language of the template.

Expand All @@ -189,15 +189,15 @@ bun create cloudflare@latest [--] [<DIRECTORY>] [OPTIONS] [-- <NESTED ARGS...>]
- `js`
- `python`

- `--ts`boolean (default: true) optional
- `--ts` <Type text="boolean" /> <MetaInfo text="(default: true) optional" />

- Use TypeScript in your application. Deprecated. Please use `--lang=ts` instead.

- `--git` boolean (default: true) optional
- `--git` <Type text="boolean" /> <MetaInfo text="(default: true) optional" />

- Initialize a local git repository for your application.

- `--open` boolean (default: true) optional
- `--open` <Type text="boolean" /> <MetaInfo text="(default: true) optional" />

- Open with your browser the deployed application (this option is ignored if the application is not deployed).

Expand All @@ -211,7 +211,7 @@ bun create cloudflare@latest [--] [<DIRECTORY>] [OPTIONS] [-- <NESTED ARGS...>]

- Use all the default C3 options each can also be overridden by specifying it.

- `--auto-update` boolean (default: true) optional
- `--auto-update` <Type text="boolean" /> <MetaInfo text="(default: true) optional" />

- Automatically uses the latest version of C3.

Expand Down