同期を使うには
supabase.com で無料プロジェクトを作り、
SQL Editor で以下を実行してから URL と anon key を貼り付けてください。
create table diary (
id text primary key,
date text, weather text, body text, place text,
image text, created_at bigint, updated_at bigint);
alter table diary enable row level security;
create policy "anon" on diary
for all using (true) with check (true);
設定後は自動で同期されます(最終更新が新しい方が優先)。