diff --git a/public/robots.txt b/public/robots.txt index fb27101216b00ab..20568b07ec8ef63 100644 --- a/public/robots.txt +++ b/public/robots.txt @@ -22,12 +22,13 @@ # answers). # ai-train: training or fine-tuning AI models. -# ANY RESTRICTIONS EXPRESSED VIA CONTENT-SIGNALS ARE EXPRESS +# ANY RESTRICTIONS EXPRESSED VIA CONTENT SIGNALS ARE EXPRESS # RESERVATIONS OF RIGHTS UNDER ARTICLE 4 OF THE EUROPEAN # UNION DIRECTIVE 2019/790 ON COPYRIGHT AND RELATED RIGHTS # IN THE DIGITAL SINGLE MARKET. User-agent: * +Content-Signal: ai-train=yes, search=yes, ai-input=yes Allow: / Disallow: /client-ip-geolocation @@ -36,7 +37,4 @@ Disallow: /constellation Disallow: /cdn-cgi/ Disallow: /email-security/ -Content-Usage: tdm=y -Content-Signal: ai-train=yes, search=yes, ai-input=yes - -Sitemap: https://developers.cloudflare.com/sitemap-index.xml \ No newline at end of file +Sitemap: https://developers.cloudflare.com/sitemap-index.xml diff --git a/src/content/docs/workers/ci-cd/builds/advanced-setups.mdx b/src/content/docs/workers/ci-cd/builds/advanced-setups.mdx index 68120dd484fca31..019c04936244cc9 100644 --- a/src/content/docs/workers/ci-cd/builds/advanced-setups.mdx +++ b/src/content/docs/workers/ci-cd/builds/advanced-setups.mdx @@ -6,6 +6,8 @@ sidebar: order: 8 --- +import { FileTree } from "~/components"; + ## Monorepos A monorepo is a single repository that contains multiple applications. This setup can be useful for a few reasons: @@ -45,23 +47,23 @@ Set the root directory of each Worker to where its wrangler.toml is located. For When a new commit is made to `ecommerce-monorepo`, a build and deploy will be triggered for each of the Workers if the change is within its included watch paths using the configured commands for that Worker. -``` -ecommerce-monorepo/ -│ -├── workers/ -│ ├── product-service/ -│ │ ├── src/ -│ │ └── wrangler.toml -│ ├── order-service/ -│ │ ├── src/ -│ │ └── wrangler.toml -│ └── notification-service/ -│ ├── src/ -│ └── wrangler.toml -├── packages/ -│ └── schema/ -└── README.md -``` +{/* prettier-ignore */} + +- ecommerce-monorepo/ + - workers/ + - product-service/ + - src/ + - wrangler.toml + - order-service/ + - src/ + - wrangler.toml + - notification-service/ + - src/ + - wrangler.toml + - packages/ + - schema/ + - README.md + ## Wrangler Environments