Skip to content
Merged
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
6 changes: 3 additions & 3 deletions environment-setup/quickstart.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Quick Start"
description: "From zero to a running tracebloc workspace in about 10 minutes."

Check warning on line 3 in environment-setup/quickstart.mdx

View check run for this annotation

Mintlify / Mintlify Validation (tracebloc) - vale-spellcheck

environment-setup/quickstart.mdx#L3

Did you really mean 'tracebloc'?
---

A running workspace in about 10 minutes, with one command. Deploying on a specific environment instead (EKS, AKS, bare-metal, OpenShift)? See [Deployment environments](/environment-setup/deployment-environments).
Expand All @@ -14,7 +14,7 @@
| You need | Minimum |
|---|---|
| A machine | macOS, Linux, or Windows · 2 CPU · 4 GB RAM · 20 GB free disk |
| A tracebloc account | [Sign up free](https://ai.tracebloc.io) — no credit card |

Check warning on line 17 in environment-setup/quickstart.mdx

View check run for this annotation

Mintlify / Mintlify Validation (tracebloc) - vale-spellcheck

environment-setup/quickstart.mdx#L17

Did you really mean 'tracebloc'?

The installer runs below these too — it only warns, and more RAM mainly helps once models train.

Expand All @@ -32,7 +32,7 @@
</Tab>
<Tab title="Windows (PowerShell as admin)">
```powershell
irm https://tracebloc.io/i.ps1 | iex

Check warning on line 35 in environment-setup/quickstart.mdx

View check run for this annotation

Mintlify / Mintlify Validation (tracebloc) - vale-spellcheck

environment-setup/quickstart.mdx#L35

Did you really mean 'irm'?

Check warning on line 35 in environment-setup/quickstart.mdx

View check run for this annotation

Mintlify / Mintlify Validation (tracebloc) - vale-spellcheck

environment-setup/quickstart.mdx#L35

Did you really mean 'iex'?
```
</Tab>
</Tabs>
Expand All @@ -43,9 +43,9 @@
Every install script is open source. Download, inspect, then run:

```bash
curl -fsSL https://tracebloc.io/i.sh -o install.sh
less install.sh # review it
bash install.sh
curl -fsSL https://tracebloc.io/i.sh -o install.sh # silent download — no output means it worked
less install.sh # review it (q to quit)
bash install.sh # run it
```

Source: [github.com/tracebloc/client](https://github.com/tracebloc/client/blob/main/scripts/install.sh). Release binaries are cosign-signed, so you can verify their signature before trusting them.
Expand Down
Loading