Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
8 changes: 3 additions & 5 deletions public/robots.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Sitemap: https://developers.cloudflare.com/sitemap-index.xml
36 changes: 19 additions & 17 deletions src/content/docs/workers/ci-cd/builds/advanced-setups.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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 */}
<FileTree>
- ecommerce-monorepo/
- workers/
- product-service/
- src/
- wrangler.toml
- order-service/
- src/
- wrangler.toml
- notification-service/
- src/
- wrangler.toml
- packages/
- schema/
- README.md
</FileTree>

## Wrangler Environments

Expand Down