← Back to Tutorials Chapter 3

Setup: Create Your Supabase Account

Creating a Supabase Account

Go to supabase.com and click the "Start your project" button in the top-right corner. You can sign up with either a GitHub account or an email address. GitHub authentication is the fastest option — click the GitHub button, authorize the application, and you are logged in. If you prefer email, enter your address, create a password, and verify your email inbox.

Once logged in, you land on the Supabase Dashboard. This is the central hub where you manage projects, view organization settings, and monitor usage.

Creating Your First Project

Follow these steps to create a new project:

  1. Click the "New project" button on the dashboard.
  2. Enter a project name — something descriptive like "supabase-tutorial".
  3. Set a database password. This password is for the postgres role, the superuser of your database. Store it in a password manager — you need it for direct database connections.
  4. Choose a region closest to your users. Select the region that minimizes latency for your target audience. For example, choose us-east-1 for North America, eu-west-2 for Europe.
  5. Select the free tier pricing plan.
  6. Click "Create new project".

Your project takes about two minutes to provision. Supabase spins up a dedicated PostgreSQL database instance, deploys the API services, and runs initial migrations. You see a loading screen with progress indicators while this happens.

Dashboard Walkthrough

After the project is ready, explore the main sections of the dashboard:

Getting Your API Keys

From the dashboard, go to Project Settings > API. You see three important values:

Free Tier Limits
The Supabase free tier includes 500 MB of database size, 50 MB of file storage, 50,000 monthly active users, 2 GB bandwidth, and 2 million edge function invocations per month. Projects on the free tier pause after one week of inactivity (you can unpause them from the dashboard). These limits are generous enough for learning, prototyping, and even small production applications.

Understanding Project Settings

The Settings page has several tabs. General settings show project name, region, and creation date. Database settings display connection parameters including the direct PostgreSQL connection string (port 5432) and the connection pooler string (port 6543) for serverless environments. API settings show the keys and URL you need for client configuration.

Billing

The free plan is sufficient for this tutorial. Supabase also offers Pro ($25/month) and Team ($599/month) plans with higher limits, priority support, and features like branching, point-in-time recovery, and read replicas. All plans include unlimited API requests and realtime connections.

Exercise
Go to supabase.com, create an account, and start a new project. Choose a name and region, then wait for the database to provision. Navigate to Project Settings > API and copy your project URL and anon key. Paste them into your local project's .env file and app.js. Run the HTML file in your browser and confirm the Supabase client initializes without errors.