-
Notifications
You must be signed in to change notification settings - Fork 12
Update Plane AI documentation with deployment instructions #226
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
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -20,7 +20,7 @@ curl "https://prime.plane.so/api/v2/setup/?version=<version>&airgapped=<true|fal | |||||
|
|
||||||
| | Parameter | Required | Default | Description | | ||||||
| | ----------- | -------- | ------- | ---------------------------------------------------------------------------- | | ||||||
| | `version` | Yes | — | Release tag (e.g., `v2.3.4`) | | ||||||
| | `version` | Yes | — | Release tag (e.g., `v2.4.04`) | | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix version example typo in Line 23 shows Suggested fix-| `version` | Yes | — | Release tag (e.g., `v2.4.04`) |
+| `version` | Yes | — | Release tag (e.g., `v2.4.0`) |📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| | `airgapped` | No | `false` | Set to `true` for airgapped compose files | | ||||||
| | `platform` | No | `amd64` | Target architecture: `amd64` or `arm64`. Only applies when `airgapped=true`. | | ||||||
|
|
||||||
|
|
@@ -41,25 +41,25 @@ curl "https://prime.plane.so/api/v2/setup/?version=<version>&airgapped=<true|fal | |||||
| **Standard setup** | ||||||
|
|
||||||
| ```bash | ||||||
| curl "https://prime.plane.so/api/v2/setup/?version=v2.3.4" -o plane.zip | ||||||
| curl "https://prime.plane.so/api/v2/setup/?version=v2.4.0" -o plane.zip | ||||||
| unzip plane.zip | ||||||
| ``` | ||||||
|
|
||||||
| **Airgapped setup (AMD64)** | ||||||
|
|
||||||
| ```bash | ||||||
| curl "https://prime.plane.so/api/v2/setup/?version=v2.3.4&airgapped=true" -o plane.zip | ||||||
| curl "https://prime.plane.so/api/v2/setup/?version=v2.4.0&airgapped=true" -o plane.zip | ||||||
| unzip plane.zip | ||||||
| ``` | ||||||
|
|
||||||
| **Airgapped setup (ARM64)** | ||||||
|
|
||||||
| ```bash | ||||||
| curl "https://prime.plane.so/api/v2/setup/?version=v2.3.4&airgapped=true&platform=arm64" -o plane.zip | ||||||
| curl "https://prime.plane.so/api/v2/setup/?version=v2.4.0&airgapped=true&platform=arm64" -o plane.zip | ||||||
| unzip plane.zip | ||||||
| ``` | ||||||
|
|
||||||
| Replace `v2.3.4` with the version you need. See the [releases page](https://plane.so/changelog?category=self-hosted) for available versions. | ||||||
| Replace `v2.4.0` with the version you need. See the [releases page](https://plane.so/changelog?category=self-hosted) for available versions. | ||||||
|
|
||||||
| ### Error responses | ||||||
|
|
||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix the Kubernetes anchor link target.
Line 90 points to
#plane-ai-pi-deployment, but the documented section heading isPlane AI deployment, so this anchor is likely broken. Please update it to the actual heading slug to avoid a dead internal link.🤖 Prompt for AI Agents