Skip to content

Commit 2987f6a

Browse files
committed
Resolving merge conflict
2 parents 8fe08c7 + 9f5efd0 commit 2987f6a

File tree

78 files changed

+389
-821
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+389
-821
lines changed

public/__redirects

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1591,6 +1591,8 @@
15911591
/workers/testing/vitest-integration/get-started/migrate-from-miniflare-2/ /workers/testing/vitest-integration/migration-guides/migrate-from-miniflare-2/ 301
15921592
/workers/testing/vitest-integration/get-started/migrate-from-unstable-dev/ /workers/testing/vitest-integration/migration-guides/migrate-from-unstable-dev/ 301
15931593
/workers/testing/vitest-integration/get-started/write-your-first-test/ /workers/testing/vitest-integration/write-your-first-test/ 301
1594+
/workers/databases/native-integrations/fauna/ /workers/databases/native-integrations/ 301
1595+
/workers/tutorials/store-data-with-fauna/ https://fauna.com/blog/the-future-of-fauna 301
15941596

15951597
# workers ai
15961598
/workers-ai/models/llm/ /workers-ai/models/#text-generation 301

src/components/ProductFeatures.astro

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ const entries = Object.entries(plan);
2929
<h3>{value.title}</h3>
3030
{value.link && (
3131
<p>
32-
<strong>Link: </strong>
33-
<a href={value.link}>{value.title}</a>
32+
<!-- prettier-ignore -->
33+
<strong>Link:</strong>{" "}<a href={value.link}>{value.title}</a>
3434
</p>
3535
)}
3636
{Object.values(value.properties).map((value: any) => (
37-
<p>
37+
<div>
3838
<strong
3939
set:html={marked.parseInline(
4040
value.title === "Availability"
@@ -46,27 +46,27 @@ const entries = Object.entries(plan);
4646
<p>{value.summary}</p>
4747
)}
4848
<ul>
49-
{value.free && (
49+
{value.free !== undefined && (
5050
<li>
51-
<strong>Free: </strong>
51+
<strong>Free:</strong>{" "}
5252
<Fragment
5353
set:html={marked.parseInline(value.free.toString())}
5454
/>
5555
</li>
5656
)}
5757
{additional_descriptions && (
5858
<>
59-
{value.lite ? (
59+
{value.lite !== undefined ? (
6060
<li>
61-
<strong>Lite: </strong>
61+
<strong>Lite:</strong>{" "}
6262
<Fragment
6363
set:html={marked.parseInline(value.lite.toString())}
6464
/>
6565
</li>
6666
) : (
67-
value.free && (
67+
value.free !== undefined && (
6868
<li>
69-
<strong>Lite: </strong>
69+
<strong>Lite:</strong>{" "}
7070
<Fragment
7171
set:html={marked.parseInline(value.free.toString())}
7272
/>
@@ -75,27 +75,27 @@ const entries = Object.entries(plan);
7575
)}
7676
</>
7777
)}
78-
{value.pro && (
78+
{value.pro !== undefined && (
7979
<li>
80-
<strong>Pro: </strong>
80+
<strong>Pro:</strong>{" "}
8181
<Fragment
8282
set:html={marked.parseInline(value.pro.toString())}
8383
/>
8484
</li>
8585
)}
8686
{additional_descriptions && (
8787
<>
88-
{value.pro_plus ? (
88+
{value.pro_plus !== undefined ? (
8989
<li>
90-
<strong>Pro Plus: </strong>
90+
<strong>Pro Plus:</strong>{" "}
9191
<Fragment
9292
set:html={marked.parseInline(value.pro_plus.toString())}
9393
/>
9494
</li>
9595
) : (
96-
value.pro && (
96+
value.pro !== undefined && (
9797
<li>
98-
<strong>Pro Plus: </strong>
98+
<strong>Pro Plus:</strong>{" "}
9999
<Fragment
100100
set:html={marked.parseInline(value.pro.toString())}
101101
/>
@@ -104,24 +104,24 @@ const entries = Object.entries(plan);
104104
)}
105105
</>
106106
)}
107-
{value.biz && (
107+
{value.biz !== undefined && (
108108
<li>
109-
<strong>Business: </strong>
109+
<strong>Business:</strong>{" "}
110110
<Fragment
111111
set:html={marked.parseInline(value.biz.toString())}
112112
/>
113113
</li>
114114
)}
115-
{value.ent && (
115+
{value.ent !== undefined && (
116116
<li>
117-
<strong>Enterprise: </strong>
117+
<strong>Enterprise:</strong>{" "}
118118
<Fragment
119119
set:html={marked.parseInline(value.ent.toString())}
120120
/>
121121
</li>
122122
)}
123123
</ul>
124-
</p>
124+
</div>
125125
))}
126126
</div>
127127
);

src/components/WorkerStarter.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ const link = `https://github.com/${repo}`;
1717
<p>{description}</p>
1818
<PackageManagers
1919
type="create"
20-
pkg="cloudflare@latest my-app"
21-
args=`--template ${repo}`
20+
pkg="cloudflare@latest"
21+
args=`my-app --template ${repo}`
2222
/>

src/content/docs/cloudflare-one/policies/access/app-paths.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@ Using a wildcard in the middle of the **Path** field covers multiple segments of
8383

8484
Port numbers are not supported in Access application paths. If a request includes a port number in the URL, Access will strip the port number and redirect the request to the default HTTP/HTTPS port.
8585

86+
### Query strings
87+
88+
Query strings (such as`?foo=bar`) are not supported in Access application paths.
89+
8690
### Anchor links
8791

8892
Since anchor links are processed by the browser and not the server, Access applications do not support `#` characters in the URL. For example, requests to `dashboard.com/#settings` will redirect to `dashboard.com`.

src/content/docs/hyperdrive/get-started.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ Hyperdrive accepts the combination of these parameters in the common connection
107107
<Tabs>
108108
<TabItem label="PostgreSQL">
109109
```txt
110-
110+
111111
postgres://USERNAME:PASSWORD@HOSTNAME_OR_IP_ADDRESS:PORT/database_name
112112
113113
```
@@ -292,11 +292,11 @@ export default {
292292
// Create a connection using the mysql2 driver (or any support driver, ORM or query builder)
293293
// with the Hyperdrive credentials. These credentials are only accessible from your Worker.
294294
const connection = await createConnection({
295-
host: env.DB_HOST,
296-
user: env.DB_USER,
297-
password: env.DB_PASSWORD,
298-
database: env.DB_NAME,
299-
port: env.DB_PORT
295+
host: env.HYPERDRIVE.host,
296+
user: env.HYPERDRIVE.user,
297+
password: env.HYPERDRIVE.password,
298+
database: env.HYPERDRIVE.database,
299+
port: env.HYPERDRIVE.port
300300

301301
// The following line is needed for mysql2 compatibility with Workers
302302
// mysql2 uses eval() to optimize result parsing for rows with > 100 columns

src/content/docs/learning-paths/warp-overview-course/series/warp-basics-1.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { Render, Tabs, TabItem, Stream, Card } from "~/components";
1515

1616
<Card>
1717
<Stream
18-
id="b3a5245bbaae45efdfc5a873837e6dd4"
18+
id="31178cc41d0ec56d42ef892160589635"
1919
title="Understand the Cloudflare WARP basics"
2020
thumbnail="https://pub-d9bf66e086fb4b639107aa52105b49dd.r2.dev/Understand-Cloudflare-WARP-Basics%20thumbnail.png"
2121
showMoreVideos={false}

src/content/docs/pages/framework-guides/deploy-a-docusaurus-site.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ To use `create-cloudflare` to create a new Docusaurus project, run the following
1515

1616
<PackageManagers
1717
type="create"
18-
pkg="cloudflare@latest my-docusaurus-app"
19-
args="--framework=docusaurus --platform=pages"
18+
pkg="cloudflare@latest"
19+
args="my-docusaurus-app --framework=docusaurus --platform=pages"
2020
/>
2121

2222
`create-cloudflare` will install additional dependencies, including the [Wrangler](/workers/wrangler/install-and-update/#check-your-wrangler-version) CLI and any necessary adapters, and ask you setup questions.

src/content/docs/pages/framework-guides/deploy-a-nuxt-site.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ The [`create-cloudflare` CLI (C3)](/pages/get-started/c3/) will configure your N
3434

3535
<PackageManagers
3636
type="create"
37-
pkg="cloudflare@latest my-nuxt-app"
38-
args="--framework=nuxt --platform=pages"
37+
pkg="cloudflare@latest"
38+
args="my-nuxt-app --framework=nuxt --platform=pages"
3939
/>
4040

4141
C3 will ask you a series of setup questions and create a new project with [`nuxi` (the official Nuxt CLI)](https://github.com/nuxt/cli). C3 will also install the necessary adapters along with the [Wrangler CLI](/workers/wrangler/install-and-update/#check-your-wrangler-version).

src/content/docs/pages/framework-guides/deploy-a-qwik-site.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ To use `create-cloudflare` to create a new Qwik project, run the following comma
1717

1818
<PackageManagers
1919
type="create"
20-
pkg="cloudflare@latest my-qwik-app"
21-
args="--framework=qwik --platform=pages"
20+
pkg="cloudflare@latest"
21+
args="my-qwik-app --framework=qwik --platform=pages"
2222
/>
2323

2424
`create-cloudflare` will install additional dependencies, including the [Wrangler CLI](/workers/wrangler/install-and-update/#check-your-wrangler-version) and any necessary adapters, and ask you setup questions.

src/content/docs/pages/framework-guides/deploy-a-react-site.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ To use `create-cloudflare` to create a new React project, run the following comm
1717

1818
<PackageManagers
1919
type="create"
20-
pkg="cloudflare@latest my-react-app"
21-
args="--framework=react --platform=pages"
20+
pkg="cloudflare@latest"
21+
args="my-react-app --framework=react --platform=pages"
2222
/>
2323

2424
`create-cloudflare` will install dependencies, including the [Wrangler](/workers/wrangler/install-and-update/#check-your-wrangler-version) CLI and the Cloudflare Pages adapter, and ask you setup questions.

0 commit comments

Comments
 (0)