Skip to content

Commit 2e19f3c

Browse files
committed
move all self-hosting tags to latest
1 parent 7c8b459 commit 2e19f3c

File tree

2 files changed

+9
-11
lines changed

2 files changed

+9
-11
lines changed

docs/github-actions.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ jobs:
181181
TRIGGER_API_URL: ${{ secrets.TRIGGER_API_URL }}
182182
# deploy with additional flags
183183
run: |
184-
npx trigger.dev@beta deploy --self-hosted --push
184+
npx trigger.dev@latest deploy --self-hosted --push
185185
```
186186

187187
</CodeGroup>

docs/open-source-self-hosting.mdx

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ title: "Self-hosting"
33
description: "You can self-host Trigger.dev on your own infrastructure."
44
---
55

6-
<Warning>Self-hosting does not support the latest CLI yet, you will have to continue using the `beta` tag for now.</Warning>
7-
86
## Overview
97

108
<Frame>
@@ -176,7 +174,7 @@ docker login -u <your_dockerhub_username>
176174
5. You can now deploy v3 projects using the CLI with these flags:
177175

178176
```
179-
npx trigger.dev@beta deploy --self-hosted --push
177+
npx trigger.dev@latest deploy --self-hosted --push
180178
```
181179

182180
## Part 2: Split services
@@ -303,7 +301,7 @@ This section highlights some of the CLI commands and options that are useful whe
303301
To avoid being redirected to the [Trigger.dev Cloud](https://cloud.trigger.dev) login page when using the CLI, you can specify the URL of your self-hosted instance with the `--api-url` or `-a` flag. For example:
304302

305303
```bash
306-
npx trigger.dev@beta login -a http://trigger.example.com
304+
npx trigger.dev@latest login -a http://trigger.example.com
307305
```
308306

309307
Once you've logged in, the CLI will remember your login details and you won't need to specify the URL again with other commands.
@@ -313,38 +311,38 @@ Once you've logged in, the CLI will remember your login details and you won't ne
313311
You can specify a custom profile when logging in. This allows you to easily use the CLI with our cloud product and your self-hosted instance at the same time. For example:
314312

315313
```
316-
npx trigger.dev@beta login -a http://trigger.example.com --profile my-profile
314+
npx trigger.dev@latest login -a http://trigger.example.com --profile my-profile
317315
```
318316

319317
You can then use this profile with other commands:
320318

321319
```
322-
npx trigger.dev@beta dev --profile my-profile
320+
npx trigger.dev@latest dev --profile my-profile
323321
```
324322

325323
To list all your profiles, use the `list-profiles` command:
326324

327325
```
328-
npx trigger.dev@beta list-profiles
326+
npx trigger.dev@latest list-profiles
329327
```
330328

331329
#### Verify login
332330

333331
It can be useful to check you have successfully logged in to the correct instance. You can do this with the `whoami` command, which will also show the API URL:
334332

335333
```bash
336-
npx trigger.dev@beta whoami
334+
npx trigger.dev@latest whoami
337335

338336
# with a custom profile
339-
npx trigger.dev@beta whoami --profile my-profile
337+
npx trigger.dev@latest whoami --profile my-profile
340338
```
341339

342340
### Deploy
343341

344342
On [Trigger.dev Cloud](https://cloud.trigger.dev), we build deployments remotely and push those images for you. When self-hosting you will have to do that locally yourself. This can be done with the `--self-hosted` and `--push` flags. For example:
345343

346344
```
347-
npx trigger.dev@beta deploy --self-hosted --push
345+
npx trigger.dev@latest deploy --self-hosted --push
348346
```
349347

350348
### CI / GitHub Actions

0 commit comments

Comments
 (0)