0
0
Supabasecloud~5 mins

Supabase CLI setup - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is the Supabase CLI used for?
The Supabase CLI is a tool that helps you manage your Supabase projects from your computer. It lets you create, develop, and deploy your database and API easily.
Click to reveal answer
beginner
How do you install the Supabase CLI on your computer?
You can install the Supabase CLI by running the command npm install -g supabase-cli if you have Node.js installed. This downloads and sets up the CLI globally.
Click to reveal answer
beginner
What command initializes a new Supabase project locally?
Use supabase init to create a new Supabase project folder with the necessary files to start working locally.
Click to reveal answer
beginner
Why do you need to log in with the Supabase CLI?
Logging in with supabase login connects your CLI to your Supabase account, so you can manage your projects and deploy changes securely.
Click to reveal answer
beginner
What is the purpose of supabase start command?
The supabase start command runs a local version of your Supabase backend, so you can test your database and API on your computer before deploying.
Click to reveal answer
Which command installs the Supabase CLI globally?
Asupabase setup
Bsupabase install
Cnpm install -g supabase-cli
Dinstall supabase-cli
What does supabase init do?
ADeploys your project to the cloud
BStarts the local Supabase server
CLogs you into Supabase
DCreates a new Supabase project locally
Why should you run supabase login?
ATo connect CLI with your Supabase account
BTo start the local server
CTo install the CLI
DTo create a new project
Which command runs your Supabase backend locally?
Asupabase start
Bsupabase deploy
Csupabase init
Dsupabase login
What do you need before installing the Supabase CLI with npm?
APython installed
BNode.js installed
CDocker installed
DJava installed
Explain the steps to set up the Supabase CLI on your computer from scratch.
Think about installation, login, project creation, and running locally.
You got /5 concepts.
    Describe why running a local Supabase backend is useful during development.
    Consider benefits of local testing before cloud deployment.
    You got /4 concepts.