diff --git a/docs/components/Footer.tsx b/docs/components/Footer.tsx index 8fcc7925fbf18..2c3d2a6601821 100644 --- a/docs/components/Footer.tsx +++ b/docs/components/Footer.tsx @@ -51,7 +51,7 @@ const navigation = { }, { name: "Discord", - href: "https://turborepo.com/discord", + href: "https://turborepo.org/discord", }, ], company: [ diff --git a/docs/pages/_document.js b/docs/pages/_document.js index 9b0be8abeb918..7fbb9c5e8a2bf 100644 --- a/docs/pages/_document.js +++ b/docs/pages/_document.js @@ -16,7 +16,7 @@ class MyDocument extends Document { crossOrigin="true" /> diff --git a/docs/pages/blog/you-might-not-need-typescript-project-references.mdx b/docs/pages/blog/you-might-not-need-typescript-project-references.mdx index 5753cfbe89d4a..e103e2ae72dbe 100644 --- a/docs/pages/blog/you-might-not-need-typescript-project-references.mdx +++ b/docs/pages/blog/you-might-not-need-typescript-project-references.mdx @@ -76,4 +76,4 @@ As previously mentioned, this pattern actually has very little to do with Turbor ## Speaking of long build times... -Shameless plug here. If you are reading this post, and you're struggling with slow build and test times, I'd love to show you how Turborepo can help. I guarantee that Turborepo will cut your monorepo's build time by 50% or more. [You can request a live demo right here.](https://turborepo.com/#demo) +Shameless plug here. If you are reading this post, and you're struggling with slow build and test times, I'd love to show you how Turborepo can help. I guarantee that Turborepo will cut your monorepo's build time by 50% or more. [You can request a live demo right here.](https://vercel.com/contact/turborepo?utm_source=turborepo.org&utm_medium=referral&utm_campaign=blog-project-references) diff --git a/docs/pages/docs/faq.mdx b/docs/pages/docs/faq.mdx index ea091422a7e8d..5cd7a3f412179 100644 --- a/docs/pages/docs/faq.mdx +++ b/docs/pages/docs/faq.mdx @@ -13,13 +13,3 @@ No. [Remote Caching](./features/remote-caching) is optional. However, you'll fin No. Turborepo does not store source code. Without Remote Caching, no code ever leaves your machine—it will only cache artifacts to local disk. With Turborepo's Remote Caching, you are responsible for configuring cache behavior and should only set up Turborepo to cache compiled artifacts. Please be aware that Turborepo treats all logs as artifacts and so these _will_ be stored along with other cache artifacts. There is also a retention period of 14 days. In the future, this retention period will be configurable on a per-task basis. - -## Is Turborepo's Remote Caching secure? - -We take security extremely seriously. - -- Without Remote Caching, there is no movement or storage of code (either source or compiled) anywhere other than to the local disk cache. -- With Remote Caching enabled, Turborepo only ever caches what you configure it to (compiled artifacts and logs), not underlying source code. Turborepo.com has a cache retention period of 14 days. In the future, this will be configurable on a per task basis. All remote cache artifacts and logs are encrypted at rest and only ever transferred via SSL. Lastly, each organization has a completely isolated AWS subaccount. -- Turborepo's hashes (the way it indexes an artifact) are modeled after git's hashes and so the chance of a collision is almost non-existent. Furthermore, since we isolate each customer's artifacts in separate AWS subaccounts, in the event of a hash collision, the impact would be immaterial. - -If the above answers do not satisfy or meet your security requirements, please let us know by opening an issue on [GitHub](https://github.com/vercel/turborepo/issues/new).