היכנס ל-supabase.com → New project → בחר שם ואזור.
2 הרץ את ה-SQL (לחץ להעתקה)
בפרויקט → SQL Editor → New query → הדבק ולחץ Run:
לחץ להעתקה
create table contacts (
id uuid default gen_random_uuid() primary key,
name text not null,
phone text not null,
created_at timestamptz default now()
);
create table jobs (
id uuid default gen_random_uuid() primary key,
job_date date not null,
client text not null,
model_name text not null,
model_phone text not null,
notes text default '',
created_at timestamptz default now()
);
create table app_settings (
key text primary key,
value text not null default ''
);
insert into app_settings values
('msg_immediate','שלום {{name}}! 👋\nרשמנו אותך לעבודה עם {{client}} ב{{day}}, {{date}}.\nנשלח לך תזכורת 3 ימים לפני. 📸'),
('msg_reminder','בוקר טוב {{name}}! ☀️\nלא לשכוח שיש לך צילומים ב{{day}}, {{date}}.\nלקוח: {{client}}\n\nחשוב להגיע מסודרת:\n💅 ציפורניים - לא ארוכות, צבע ניוד בלבד\n✨ להגיע מוכנה לצילומים\n\nבהצלחה! 🌟'),
('webhook_url','');
alter table contacts enable row level security;
alter table jobs enable row level security;
alter table app_settings enable row level security;
create policy "all" on contacts for all using (true) with check (true);
create policy "all" on jobs for all using (true) with check (true);
create policy "all" on app_settings for all using (true) with check (true);
3 הכנס את פרטי החיבור
Project Settings → API → העתק Project URL ו-anon/public key:
📸
BookMe
יומן משותף
זמן אמת
🔔
⚡ קרובות
➕ הוספת עבודה
כל העבודות 0
🔧 בדיקת חיבור
לחץ בדוק כדי לבדוק חיבור ל-Supabase
➕ הוספת דוגמנית
— או הכנס ידנית —
דוגמניות 0
📨 הודעת אישור מיידית
נשלחת אוטומטית ברגע שמוסיפים עבודה חדשה.
משתנים זמינים: {{name}} שם הדוגמנית · {{client}} שם הלקוח · {{date}} תאריך · {{day}} יום בשבוע