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
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ portal update
- Default log file level is `debug`.
- Logs are written to `~/.portal/_logs/`.
- `PORTAL_LOG` is preferred over `RUST_LOG` when both are set.
- For troubleshooting noisy or missing logs, see [Troubleshooting](https://portal.build.app/docs/troubleshooting).
- For troubleshooting noisy or missing logs, see [Troubleshooting](https://portal.biuld.app/docs/troubleshooting).

## How to Run or Use It

Expand Down Expand Up @@ -235,12 +235,12 @@ portal config list

Detailed guides for every workflow:

- [Docs Home](https://portal.build.app/docs)
- [Install](https://portal.build.app/docs/install)
- [Usage](https://portal.build.app/docs/usage)
- [CLI to CLI](https://portal.build.app/docs/cli-cli)
- [Troubleshooting](https://portal.build.app/docs/troubleshooting)
- [FAQ](https://portal.build.app/docs/faq)
- [Docs Home](https://portal.biuld.app/docs)
- [Install](https://portal.biuld.app/docs/install)
- [Usage](https://portal.biuld.app/docs/usage)
- [CLI to CLI](https://portal.biuld.app/docs/cli-cli)
- [Troubleshooting](https://portal.biuld.app/docs/troubleshooting)
- [FAQ](https://portal.biuld.app/docs/faq)

Docs source of truth:

Expand Down
2 changes: 1 addition & 1 deletion apps/web/app/docs/opengraph-image.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export default function Image() {
color: "#475569",
}}
>
<span style={{ display: "flex" }}>portal.build.app/docs</span>
<span style={{ display: "flex" }}>portal.biuld.app/docs</span>
<span
style={{
display: "flex",
Expand Down
2 changes: 1 addition & 1 deletion apps/web/app/opengraph-image.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const contentType = "image/png";

export default function Image() {
const site = (
process.env.NEXT_PUBLIC_SITE_URL || "https://portal.build.app"
process.env.NEXT_PUBLIC_SITE_URL || "https://portal.biuld.app"
).replace(/^https?:\/\//, "");

return new ImageResponse(
Expand Down
6 changes: 3 additions & 3 deletions apps/web/components/Terminal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ const installers = [
{
id: "linux",
label: "Linux / macOS",
cmd: "curl -fsSL https://portal.build.app/install.sh | sh",
cmd: "curl -fsSL https://portal.biuld.app/install.sh | sh",
},
{
id: "android",
label: "Android / Termux",
cmd: "curl -fsSL https://portal.build.app/install.sh | sh",
cmd: "curl -fsSL https://portal.biuld.app/install.sh | sh",
},
{
id: "windows",
label: "PowerShell",
cmd: 'powershell -ExecutionPolicy Bypass -c "irm https://portal.build.app/install.ps1 | iex"',
cmd: 'powershell -ExecutionPolicy Bypass -c "irm https://portal.biuld.app/install.ps1 | iex"',
},
{ id: "npm", label: "npm", cmd: "npm install -g @hiverra/portal@0.11.1" },
];
Expand Down
6 changes: 3 additions & 3 deletions apps/web/content/install.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,23 @@ There are several ways to install Portal, but they are not equal. If you just wa
Use the installer script:

```bash
curl -fsSL https://portal.build.app/install.sh | sh
curl -fsSL https://portal.biuld.app/install.sh | sh
```

### Windows

Use the PowerShell installer:

```powershell
powershell -ExecutionPolicy Bypass -c "irm https://portal.build.app/install.ps1 | iex"
powershell -ExecutionPolicy Bypass -c "irm https://portal.biuld.app/install.ps1 | iex"
```

### Android / Termux

Use the Android-specific installer:

```bash
curl -fsSL https://portal.build.app/install.sh | sh
curl -fsSL https://portal.biuld.app/install.sh | sh
```

### npm package
Expand Down