Skip to content

Improves the text explaining how to use secret key #2005

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 1 commit into from
May 1, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { type MetaFunction } from "@remix-run/react";
import { type LoaderFunctionArgs } from "@remix-run/server-runtime";
import { typedjson, useTypedLoaderData } from "remix-typedjson";
import { AdminDebugTooltip } from "~/components/admin/debugTooltip";
import { InlineCode } from "~/components/code/InlineCode";
import { EnvironmentCombo, environmentFullTitle } from "~/components/environments/EnvironmentLabel";
import { RegenerateApiKeyModal } from "~/components/environments/RegenerateApiKeyModal";
import { PageBody, PageContainer } from "~/components/layout/AppLayout";
Expand Down Expand Up @@ -159,9 +160,9 @@ export default function Page() {
<div className="flex flex-wrap justify-between">
<InfoPanel icon={InformationCircleIcon} variant="minimal" panelClassName="max-w-fit">
<Paragraph variant="small">
Secret keys should be used on your server. They give full API access and allow you
to <TextLink to={docsPath("v3/triggering")}>trigger tasks</TextLink> from your
backend.
Set your <TextLink to={docsPath("apikeys")}>Secret keys</TextLink> in your backend
by adding <InlineCode>TRIGGER_SECRET_KEY</InlineCode> env var in order to{" "}
<TextLink to={docsPath("v3/triggering")}>trigger tasks</TextLink>.
</Paragraph>
</InfoPanel>
</div>
Expand Down