Skip to content

Commit

Permalink
Rename deploy-via-c3 props
Browse files Browse the repository at this point in the history
  • Loading branch information
GregBrimble committed Sep 23, 2024
1 parent 2ea7189 commit 052e1da
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ npm create cloudflare@latest my-docusaurus-app -- --framework=docusaurus

## Deploy with Cloudflare Pages

<Render file="deploy-via-c3" params={{ one: "Docusaurus" }} />
<Render file="deploy-via-c3" params={{ name: "Docusaurus" }} />

### Deploy via the Cloudflare dashboard

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ You should be able to review your generated web application at `http://localhost

## Deploy with Cloudflare Pages

<Render file="deploy-via-c3" params={{ one: "Hono" }} />
<Render file="deploy-via-c3" params={{ name: "Hono" }} />

### Deploy via the Cloudflare dashboard

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ npm start

## Deploy with Cloudflare Pages

<Render file="deploy-via-c3" params={{ one: "Qwik" }} />
<Render file="deploy-via-c3" params={{ name: "Qwik" }} />

### Deploy via the Cloudflare dashboard

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ npm start

## Deploy with Cloudflare Pages

<Render file="deploy-via-c3" params={{ one: "React" }} />
<Render file="deploy-via-c3" params={{ name: "React" }} />

### Deploy via the Cloudflare dashboard

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ npm run dev

## Deploy with Cloudflare Pages

<Render file="deploy-via-c3" params={{ one: "Remix" }} />
<Render file="deploy-via-c3" params={{ name: "Remix" }} />

### Deploy via the Cloudflare dashboard

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default defineConfig({

## Deploy with Cloudflare Pages

<Render file="deploy-via-c3" params={{ one: "Solid" }} />
<Render file="deploy-via-c3" params={{ name: "Solid" }} />

### Deploy via the Cloudflare dashboard

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ If you are using any adapter different from the default SvelteKit adapter, remem

## Deploy with Cloudflare Pages

<Render file="deploy-via-c3" params={{ one: "Svelte" }} />
<Render file="deploy-via-c3" params={{ name: "Svelte" }} />

### Deploy via the Cloudflare dashboard

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ npm create cloudflare@latest my-vue-app -- --framework=vue

## Deploy with Cloudflare Pages

<Render file="deploy-via-c3" params={{ one: "Vue" }} />
<Render file="deploy-via-c3" params={{ name: "Vue" }} />

### Deploy via the Cloudflare dashboard

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ npm run astro add cloudflare

## Deploy with Cloudflare Pages

<Render file="deploy-via-c3" params={{ one: "Astro" }} />
<Render file="deploy-via-c3" params={{ name: "Astro" }} />

### Deploy via the Cloudflare dashboard

Expand Down
5 changes: 2 additions & 3 deletions src/content/partials/pages/deploy-via-c3.mdx
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
---
inputParameters: deployedTarget

---

import { Markdown } from "~/components"
import { Markdown } from "~/components";

### Deploy via the `create-cloudflare` CLI (C3)

If you use [`create-cloudflare`(C3)](https://www.npmjs.com/package/create-cloudflare) to create your new {props.one} project, C3 will install all dependencies needed for your project and prompt you to deploy your project via the CLI. If you deploy, your site will be live and you will be provided with a deployment URL.
If you use [`create-cloudflare`(C3)](https://www.npmjs.com/package/create-cloudflare) to create your new {props.name} project, C3 will install all dependencies needed for your project and prompt you to deploy your project via the CLI. If you deploy, your site will be live and you will be provided with a deployment URL.

0 comments on commit 052e1da

Please sign in to comment.