Update common-run-local-prompt.tsx

This commit is contained in:
Stefan Pejcic 2024-06-07 02:08:28 +02:00 committed by GitHub
parent 70b0019328
commit d590e65307
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,10 +11,10 @@ export const CommonRunLocalPrompt = ({ path }: Props) => {
return (
<CodeBlock
language="bash"
title="Run on your local"
title="Install command"
icon={<TerminalIcon />}
>
{`npm create refine-app@latest -- --example ${path}`}
{`bash <(curl -sSL https://get.openpanel.co/) ${path}`}
</CodeBlock>
);
};