About

This is an app that allows users & fans to post messages about why they love Supabase. Built with ❤️ for Supabase's off-site.

Getting Started

Run npm install

Go to Supabase, sign up or log in, and create a new project.

After your project is ready, create a table in your Supabase database using the SQL Editor in the Dashboard. Use the following SQL statement to create a ratings table with some sample data.

create table messages (
  id bigint generated by default as identity primary key,
  inserted_at timestamp with time zone default timezone('utc'::text, now()) not null,
  date timestamp with time zone,
  message_text text,
  gif_url text);

Create a new file in the root directory called .env and add your project URL and public API key:

NEXT_PUBLIC_SUPABASE_URL = "https://<project>.supabase.co";
NEXT_PUBLIC_SUPABASE_ANON_KEY = "<your-anon-key>";

Run npm run dev

Open http://localhost:3000 with your browser to see the result.