mirror of
https://github.com/supabase/supabase.git
synced 2026-06-12 17:27:58 +08:00
## I have read the [CONTRIBUTING.md](https://github.com/supabase/supabase/blob/master/CONTRIBUTING.md) file. YES <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Documentation** * Updated CLI installation guidance to recommend “global CLI usage” phrasing and link to platform-specific installation pages * Removed duplicate legacy note in the npm install guidance * Reworded CLI update guidance to state updates use the “same channels” * Expanded “Running Supabase locally” walkthrough with clear post-init steps, start instructions, and clarified credentials output * Clarified analytics schema wording from “will be stored” to “are stored” <!-- end of auto-generated comment: release notes by coderabbit.ai -->
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, read [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>
|