Skip to content

Commit bb4815b

Browse files
committed
Merge branch 'production' into external-link-sidebar-new-tab
2 parents 7963a5f + 7313754 commit bb4815b

File tree

415 files changed

+12620
-3974
lines changed

Some content is hidden

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

415 files changed

+12620
-3974
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/src/content/release-notes/workers-ai.yaml @kathayl @mchenco @kodster28 @cloudflare/pcx-technical-writing
2727
/src/content/release-notes/ai-gateway.yaml @kathayl @mchenco @kodster28 @cloudflare/pcx-technical-writing
2828
/src/content/release-notes/vectorize.yaml @elithrar @mchenco @sejoker @cloudflare/pcx-technical-writing
29-
/src/content/docs/autorag/ @rita3ko @irvinebroque @aninibread @cloudflare/pcx-technical-writing
29+
/src/content/docs/ai-search/ @rita3ko @irvinebroque @aninibread @cloudflare/pcx-technical-writing
3030

3131
# Analytics & Logs
3232

.github/workflows/publish-production.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
--config bin/rclone.conf \
6868
distmd \
6969
zt:zt-dashboard-dev-docs
70-
- name: Upload vendored Markdown files to AutoRAG DevDocs bucket
70+
- name: Upload vendored Markdown files to AI Search DevDocs bucket
7171
env:
7272
AWS_ACCESS_KEY_ID: ${{ secrets.AUTORAG_DEVDOCS_ACCESS_KEY_ID }}
7373
AWS_SECRET_ACCESS_KEY: ${{ secrets.AUTORAG_DEVDOCS_SECRET_ACCESS_KEY }}

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ pnpm-debug.log*
2929
/assets/secrets
3030
/worker/functions/
3131

32-
.idea
32+
.idea
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
trigger: glob
3+
globs: *.mdx
4+
---
5+
6+
# General styling
7+
8+
- Follow all guidance in the [Cloudflare Style Guide](https://developers.cloudflare.com/style-guide/).
9+
10+
## Grammar rules
11+
12+
- Do not use contractions, exclamation marks, or non-standard quotes like `‘’“”`
13+
- Fix common spelling errors, specifically misspellings of "wrangler"
14+
- Remove whitespace characters from the end of the line.
15+
- Remove duplicate words.
16+
17+
## Links
18+
19+
- Use links that exist in the current file context. In most cases, these links will be very close to those at https://developers.cloudflare.com/sitemap-0.xml
20+
- When referring to another page in our docs, use the full relative link (`/1.1.1.1/check/`) instead of the full URL (`https://developers.cloudflare.com/1.1.1.1/check/`), a local development link (`http://localhost:1111/1.1.1.1/check/`), or a dot notation link `../check/`).
21+
- For links without anchors, always use a trailing slash
22+
- Use meaningful link words, such as the title of the linked page. Avoid link words like "here", "this page", "our documentation", or "read more".
23+
- Where appropriate, add cross links to relevant other pages in our documentation. These links will exist in the current file context and most are also available at https://developers.cloudflare.com/sitemap-0.xml.
24+
25+
## Components
26+
27+
- If a component is used in a page, it needs to be imported below the initial frontmatter (`import { DashButton } from "~/components";`)
28+
- If `https://dash.cloudflare.com` is used in a series of steps, replace with the [`DashButton` component](https://developers.cloudflare.com/style-guide/components/dash-button/).
29+
- Replace `sh` code blocks that have requests to `https://api.cloudflare.com` with our [`APIRequest` component](https://developers.cloudflare.com/style-guide/components/api-request/).
30+
- Replace `txt` blocks attempted to show a file tree with our [`FileTree` component](https://developers.cloudflare.com/style-guide/components/file-tree/).
31+
- Replace `sh` blocks using `npm commands` with our [`PackageManagers` component](https://developers.cloudflare.com/style-guide/components/package-managers/).
32+
- Replace in-text mentions of Cloudflare's number of data centers, network capacity, or network peers with our [`PublicStats` component](https://developers.cloudflare.com/style-guide/components/public-stats/).
33+
- Replace `toml` or `json` code blocks with [Wrangler configuration](https://developers.cloudflare.com/workers/wrangler/configuration/#sample-wrangler-configuration) information with our [`WranglerConfig` component](https://developers.cloudflare.com/style-guide/components/wrangler-config/).
34+
- Replace `ts` or `typescript` code blocks with our [`TypeScriptExample` component](https://developers.cloudflare.com/style-guide/components/typescript-example/). Ignore this rule if the original code block is within a tutorial or other step-by-step guide that is specific to TypeScript.

bin/rclone.conf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,20 @@ provider = Cloudflare
44
env_auth = true
55
endpoint = https://b54f07a6c269ecca2fa60f1ae4920c99.r2.cloudflarestorage.com
66
acl = private
7+
no_check_bucket = true
78

89
[zt]
910
type = s3
1011
provider = Cloudflare
1112
env_auth = true
1213
endpoint = https://e76c849bd111ee7d3006b6625713991e.r2.cloudflarestorage.com
1314
acl = private
15+
no_check_bucket = true
1416

1517
[autorag]
1618
type = s3
1719
provider = Cloudflare
1820
env_auth = true
1921
endpoint = https://cf9267a5bf4f6b3cceca48d554d81679.r2.cloudflarestorage.com
2022
acl = private
23+
no_check_bucket = true

public/__redirects

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,8 @@
245245
/api-shield/security/sequence-mitigation/configure/ /api-shield/security/sequence-mitigation/api/ 301
246246

247247
#autorag
248-
/autorag/usage/recipes/ /autorag/how-to/ 301
249-
/autorag/configuration/metadata-filtering/ /autorag/configuration/metadata/ 301
248+
/autorag/usage/recipes/ /ai-search/how-to/ 301
249+
/autorag/configuration/metadata-filtering/ /ai-search/configuration/metadata/ 301
250250

251251
# bots
252252
/bots/about/plans/ /bots/plans/ 301
@@ -532,7 +532,7 @@
532532
/durable-objects/api/hibernatable-websockets-api/ /durable-objects/best-practices/websockets/ 301
533533
/durable-objects/api/alarms-in-durable-objects/ /durable-objects/api/alarms/ 301
534534
/durable-objects/api/websockets/ /durable-objects/best-practices/websockets/ 301
535-
/durable-objects/api/sql-storage/ /durable-objects/api/storage-api/ 301
535+
/durable-objects/api/sql-storage/ /durable-objects/api/sqlite-storage-api/ 301
536536
/durable-objects/platform/data-location/ /durable-objects/reference/data-location/ 301
537537
/durable-objects/platform/environments/ /durable-objects/reference/environments/ 301
538538
/durable-objects/platform/troubleshooting/ /durable-objects/observability/troubleshooting/ 301
@@ -547,7 +547,7 @@
547547
/durable-objects/reference/error-handling/ /durable-objects/best-practices/error-handling/ 301
548548
/durable-objects/reference/troubleshooting/ /durable-objects/observability/troubleshooting/ 301
549549
/durable-objects/reference/websockets/ /durable-objects/best-practices/websockets/ 301
550-
/durable-objects/api/transactional-storage-api/ /durable-objects/api/storage-api/ 301
550+
/durable-objects/api/transactional-storage-api/ /durable-objects/api/sqlite-storage-api/ 301
551551
/durable-objects/platform/changelog/ /durable-objects/release-notes/ 301
552552
/durable-objects/changelog/ /durable-objects/release-notes/ 301
553553
/durable-objects/glossary/ /durable-objects/reference/glossary/ 301
@@ -1579,6 +1579,7 @@
15791579
/r2/examples/cloudflare-access/ /r2/tutorials/cloudflare-access/ 301
15801580
/r2/examples/upload-logs-event-notifications/ /r2/tutorials/upload-logs-event-notifications/ 301
15811581
/r2/examples/demo-worker/ /r2/api/workers/workers-api-usage/ 301
1582+
/r2/sql/platform/troubleshooting/ /r2-sql/troubleshooting/ 301
15821583

15831584
# time-services_redirects
15841585
/time-services/nts/usage/ /time-services/nts/ 301
@@ -2174,6 +2175,7 @@
21742175
/cloudflare-one/connections/connect-networks/private-net/create-private-networks/ /cloudflare-one/connections/connect-networks/private-net/warp-to-warp/ 301
21752176
/cloudflare-one/connections/connect-networks/private-net/private-hostnames-ips/ /cloudflare-one/connections/connect-networks/private-net/cloudflared/private-dns/ 301
21762177
/cloudflare-one/connections/connect-networks/private-net/tunnel-virtual-networks/ /cloudflare-one/connections/connect-networks/private-net/cloudflared/tunnel-virtual-networks/ 301
2178+
/cloudflare-one/connections/connect-networks/private-net/warp-connector/vpc-deployments/ /cloudflare-one/connections/connect-networks/private-net/warp-connector/tips/ 301
21772179
/argo-tunnel/faq/ /cloudflare-one/faq/cloudflare-tunnels-faq/ 301
21782180
/cloudflare-one/policies/browser-isolation/clientless-browser-isolation/ /cloudflare-one/policies/browser-isolation/setup/clientless-browser-isolation/ 301
21792181
/cloudflare-one/connections/connect-devices/agentless/dns-over-https/ /cloudflare-one/connections/connect-devices/agentless/dns/dns-over-https/ 301
@@ -2321,6 +2323,9 @@
23212323
# AI Crawl Control
23222324
/ai-audit/* /ai-crawl-control/:splat 301
23232325

2326+
# AutoRAG to AI search
2327+
/autorag/* /ai-search/:splat 301
2328+
23242329
# Cloudflare One / Zero Trust
23252330
/cloudflare-one/connections/connect-networks/install-and-setup/tunnel-guide/local/as-a-service/* /cloudflare-one/connections/connect-networks/configure-tunnels/local-management/as-a-service/:splat 301
23262331
/cloudflare-one/connections/connect-apps/install-and-setup/deployment-guides/* /cloudflare-one/connections/connect-networks/deployment-guides/:splat 301
8.54 MB
Loading
8.56 MB
Loading

public/robots.txt

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,42 @@
1+
# As a condition of accessing this website, you agree to
2+
# abide by the following content signals:
3+
4+
# (a) If a content-signal = yes, you may collect content
5+
# for the corresponding use.
6+
# (b) If a content-signal = no, you may not collect content
7+
# for the corresponding use.
8+
# (c) If the website operator does not include a content
9+
# signal for a corresponding use, the website operator
10+
# neither grants nor restricts permission via content signal
11+
# with respect to the corresponding use.
12+
13+
# The content signals and their meanings are:
14+
15+
# search: building a search index and providing search
16+
# results (e.g., returning hyperlinks and short excerpts
17+
# from your website's contents). Search does not include
18+
# providing AI-generated search summaries.
19+
# ai-input: inputting content into one or more AI models
20+
# (e.g., retrieval augmented generation, grounding, or other
21+
# real-time taking of content for generative AI search
22+
# answers).
23+
# ai-train: training or fine-tuning AI models.
24+
25+
# ANY RESTRICTIONS EXPRESSED VIA CONTENT-SIGNALS ARE EXPRESS
26+
# RESERVATIONS OF RIGHTS UNDER ARTICLE 4 OF THE EUROPEAN
27+
# UNION DIRECTIVE 2019/790 ON COPYRIGHT AND RELATED RIGHTS
28+
# IN THE DIGITAL SINGLE MARKET.
29+
130
User-agent: *
231

32+
Allow: /
333
Disallow: /client-ip-geolocation
434
Disallow: /plans/
535
Disallow: /constellation
636
Disallow: /cdn-cgi/
737
Disallow: /email-security/
838

939
Content-Usage: tdm=y
40+
Content-Signal: ai-train=yes, search=yes, ai-input=yes
1041

11-
Sitemap: https://developers.cloudflare.com/sitemap-index.xml
42+
Sitemap: https://developers.cloudflare.com/sitemap-index.xml
File renamed without changes.

0 commit comments

Comments
 (0)