Skip to content

memeOS · operator console

/console

Restricted access. Authenticate to upload new records to the meme archive.

checking credentials…

▸ system diagnostics

table "memes"
scanning…
bucket "memes"
scanning…

Setup required. Run this in the Supabase SQL editor, then create a public memes storage bucket:

create extension if not exists "pgcrypto";

create table if not exists public.memes (
  id uuid primary key default gen_random_uuid(),
  created_at timestamptz not null default now(),
  title text not null,
  image_url text not null,
  tags text[] default '{}'
);

alter table public.memes enable row level security;

-- public can read
create policy "memes_read" on public.memes
  for select using (true);

-- only authenticated operators can write
create policy "memes_write" on public.memes
  for insert to authenticated with check (true);