这是indexloc提供的服务,不要输入任何密码
Skip to content

docs: Papercuts #513

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jan 6, 2022
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
2 changes: 1 addition & 1 deletion docs/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const navigation = {
},
{
name: "Discord",
href: "https://turborepo.com/discord",
href: "https://turborepo.org/discord",
},
],
company: [
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/_document.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class MyDocument extends Document {
crossOrigin="true"
/>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&display=block"
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&display=optional"
rel="stylesheet"
/>
</Head>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
10 changes: 0 additions & 10 deletions docs/pages/docs/faq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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).