generateCLICommands() — supabase Function Reference
Architecture documentation for the generateCLICommands() function in EdgeFunctionDetails.utils.tsx from the supabase codebase.
Entity Profile
Dependency Diagram
graph TD 93305f38_bc7f_aa18_74f9_e4adaa642b15["generateCLICommands()"] 95c2dd19_a7cf_7066_2339_02148338604b["EdgeFunctionDetails()"] 95c2dd19_a7cf_7066_2339_02148338604b -->|calls| 93305f38_bc7f_aa18_74f9_e4adaa642b15 style 93305f38_bc7f_aa18_74f9_e4adaa642b15 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/studio/components/interfaces/Functions/EdgeFunctionDetails/EdgeFunctionDetails.utils.tsx lines 3–103
export const generateCLICommands = ({
selectedFunction,
functionUrl,
anonKey,
}: {
selectedFunction?: EdgeFunction
functionUrl: string
anonKey: string
}) => {
const managementCommands: any = [
{
command: `supabase functions deploy ${selectedFunction?.slug}`,
description: 'This will overwrite the deployed function with your new function',
jsx: () => {
return (
<>
<span className="text-brand-600">supabase</span> functions deploy{' '}
{selectedFunction?.slug}
</>
)
},
comment: 'Deploy a new version',
},
{
command: `supabase functions delete ${selectedFunction?.slug}`,
description: 'This will remove the function and all the logs associated with it',
jsx: () => {
return (
<>
<span className="text-brand-600">supabase</span> functions delete{' '}
{selectedFunction?.slug}
</>
)
},
comment: 'Delete the function',
},
]
const secretCommands: any = [
{
command: `supabase secrets list`,
description: 'This will list all the secrets for your project',
jsx: () => {
return (
<>
<span className="text-brand-600">supabase</span> secrets list
</>
)
},
comment: 'View all secrets',
},
{
command: `supabase secrets set NAME1=VALUE1 NAME2=VALUE2`,
description: 'This will set secrets for your project',
jsx: () => {
return (
<>
<span className="text-brand-600">supabase</span> secrets set NAME1=VALUE1 NAME2=VALUE2
</>
)
},
comment: 'Set secrets for your project',
},
{
command: `supabase secrets unset NAME1 NAME2 `,
description: 'This will delete secrets for your project',
jsx: () => {
return (
<>
<span className="text-brand-600">supabase</span> secrets unset NAME1 NAME2
</>
)
},
comment: 'Unset secrets for your project',
},
]
const invokeCommands: any = [
{
command: `curl -L -X POST '${functionUrl}' -H 'Authorization: Bearer ${
anonKey ?? '[YOUR ANON KEY]'
}' --data '{"name":"Functions"}'`,
description: 'Invokes the hello function',
jsx: () => {
return (
<>
<span className="text-brand-600">curl</span> -L -X POST '{functionUrl}'{' '}
{selectedFunction?.verify_jwt
? `-H
'Authorization: Bearer [YOUR ANON KEY]' `
: ''}
{`--data '{"name":"Functions"}'`}
</>
)
},
comment: 'Invoke your function',
},
]
return { managementCommands, secretCommands, invokeCommands }
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does generateCLICommands() do?
generateCLICommands() is a function in the supabase codebase.
What calls generateCLICommands()?
generateCLICommands() is called by 1 function(s): EdgeFunctionDetails.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free