mirror of
https://github.com/supabase/supabase.git
synced 2026-06-10 04:26:19 +08:00
32 lines
1.3 KiB
Plaintext
32 lines
1.3 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">
|
|
<div className="col-span-6">
|
|
<Link href="https://github.com/supabase/cli" passHref>
|
|
<GlassPanel icon={'/docs/img/icons/github-icon'} hasLightIcon={true} title="Supabase CLI">
|
|
The Supabase CLI provides tools to develop manage your Supabase projects from your local
|
|
machine.
|
|
</GlassPanel>
|
|
</Link>
|
|
</div>
|
|
<div className="col-span-6">
|
|
<Link href="https://github.com/supabase/setup-cli" passHref>
|
|
<GlassPanel icon={'/docs/img/icons/github-icon'} hasLightIcon={true} title="GitHub Action">
|
|
A GitHub action for interacting with your Supabase projects using the CLI.
|
|
</GlassPanel>
|
|
</Link>
|
|
</div>
|
|
</div>
|