FAMILY BOOKSHELF
— 使用イメージ —
📷 スキャンして登録
📷 バーコードをスキャン
ISBNを入力…
検索
小説・文学
リビング 書斎 子供部屋
お母さん お父さん 子ども
この本を登録する
📚 一覧で管理
すべて リビング 書斎 子供部屋
全員 お父さん お母さん 子ども
登録された本全12冊
📖
星の王子さま
サン=テグジュペリ
📍 リビング 💰 お母さん 小説・文学
📅 2026/04/10
📖
嫌われる勇気
岸見一郎
📍 書斎 💰 お父さん 哲学・心理
📅 2026/03/22
🔄 家族でリアルタイム共有
リアルタイム同期中
📗 「星の王子さま」が追加されました
お父さん
お母さん
子ども
リビング
書斎
子供部屋
12
冊登録済み
Supabaseで家族間リアルタイム同期
無料のSupabaseを使うと、家族全員の端末でリアルタイムに本の情報が同期されます。
1
supabase.com で無料アカウントを作り、新しいプロジェクトを作成
2
Project Settings → API から Project URLanon public key をコピー
3
SQL Editor で下のSQLを実行してテーブルを作成
4
公開URLを家族に共有するだけで全員が同じデータを使えます

または
▼ Supabase SQL Editor に貼り付けるSQL
create table locations (
  id text primary key,
  name text not null,
  color text not null,
  created_at timestamptz default now()
);
create table members (
  id text primary key,
  name text not null,
  color text not null,
  created_at timestamptz default now()
);
create table books (
  id text primary key,
  isbn text,
  title text not null,
  author text,
  publisher text,
  cover text,
  description text,
  genre text,
  location_id text references locations(id),
  buyer_id text references members(id),
  added_at bigint
);
alter table locations enable row level security;
alter table members enable row level security;
alter table books enable row level security;
create policy "open" on locations for all using (true) with check (true);
create policy "open" on members   for all using (true) with check (true);
create policy "open" on books     for all using (true) with check (true);
FAMILY BOOKSHELF
🔄
登録された本
0冊