Files
supabase/apps/docs/content/guides/cli.mdx
2025-02-21 14:13:00 -05:00

38 lines
1.4 KiB
Plaintext

---
id: 'cli'
title: 'Local Dev with CLI'
description: 'Developing locally using the Supabase CLI.'
subtitle: 'Developing locally using the Supabase CLI.'
sidebar_label: 'Overview'
---
You can use the Supabase CLI to run the entire Supabase stack locally on your machine, by running `supabase init` and then `supabase start`. To install the CLI, see the [installation guide](/docs/guides/cli/getting-started#installing-the-supabase-cli).
The Supabase CLI provides tools to develop your project locally, deploy to the Supabase Platform, handle database migrations, and generate types directly from your database schema.
## Resources
<div className="grid md:grid-cols-12 gap-4 not-prose">
{[
{
name: 'Supabase CLI',
description:
'The Supabase CLI provides tools to develop manage your Supabase projects from your local machine.',
href: 'https://github.com/supabase/cli',
},
{
name: 'GitHub Action',
description: ' A GitHub action for interacting with your Supabase projects using the CLI.',
href: 'https://github.com/supabase/setup-cli',
},
].map((x) => (
<div className="col-span-6" key={x.href}>
<Link href={x.href} passHref>
<GlassPanel icon={'/docs/img/icons/github-icon'} hasLightIcon={true} title={x.name}>
{x.description}
</GlassPanel>
</Link>
</div>
))}
</div>