0
0
Supabasecloud~10 mins

Supabase CLI setup - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to install Supabase CLI using npm.

Supabase
npm install -g supabase[1]
Drag options to blanks, or click blank then click option'
A-sdk
B-client
C-tool
D-cli
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'supabase-client' instead of 'supabase-cli'.
Forgetting the '-g' flag for global installation.
2fill in blank
medium

Complete the command to initialize a new Supabase project in the current directory.

Supabase
supabase [1]
Drag options to blanks, or click blank then click option'
Ainit
Bstart
Cdeploy
Dlogin
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'start' instead of 'init' to initialize the project.
Trying to deploy before initializing.
3fill in blank
hard

Fix the error in the command to log in to Supabase CLI.

Supabase
supabase [1]
Drag options to blanks, or click blank then click option'
Asignin
Blogin
Cauth
Dconnect
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'signin' which is not recognized by Supabase CLI.
Using 'auth' or 'connect' which are incorrect commands.
4fill in blank
hard

Fill both blanks to start the local Supabase development environment with Docker.

Supabase
supabase [1] [2]
Drag options to blanks, or click blank then click option'
Astart
Bstop
C--docker
D--local
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'stop' instead of 'start'.
Using '--local' instead of '--docker' when Docker is intended.
5fill in blank
hard

Fill all three blanks to deploy your Supabase project to the cloud.

Supabase
supabase [1] [2] [3]
Drag options to blanks, or click blank then click option'
Adeploy
B--project-ref
Cyour-project-ref
Dstart
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'start' instead of 'deploy'.
Omitting the project reference flag or value.