File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.apikeys Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import { type MetaFunction } from "@remix-run/react";
3
3
import { type LoaderFunctionArgs } from "@remix-run/server-runtime" ;
4
4
import { typedjson , useTypedLoaderData } from "remix-typedjson" ;
5
5
import { AdminDebugTooltip } from "~/components/admin/debugTooltip" ;
6
+ import { InlineCode } from "~/components/code/InlineCode" ;
6
7
import { EnvironmentCombo , environmentFullTitle } from "~/components/environments/EnvironmentLabel" ;
7
8
import { RegenerateApiKeyModal } from "~/components/environments/RegenerateApiKeyModal" ;
8
9
import { PageBody , PageContainer } from "~/components/layout/AppLayout" ;
@@ -159,9 +160,9 @@ export default function Page() {
159
160
< div className = "flex flex-wrap justify-between" >
160
161
< InfoPanel icon = { InformationCircleIcon } variant = "minimal" panelClassName = "max-w-fit" >
161
162
< Paragraph variant = "small" >
162
- Secret keys should be used on your server. They give full API access and allow you
163
- to < TextLink to = { docsPath ( "v3/triggering" ) } > trigger tasks </ TextLink > from your
164
- backend .
163
+ Set your < TextLink to = { docsPath ( "apikeys" ) } > Secret keys </ TextLink > in your backend
164
+ by adding < InlineCode > TRIGGER_SECRET_KEY </ InlineCode > env var in order to { " " }
165
+ < TextLink to = { docsPath ( "v3/triggering" ) } > trigger tasks </ TextLink > .
165
166
</ Paragraph >
166
167
</ InfoPanel >
167
168
</ div >
You can’t perform that action at this time.
0 commit comments