Supabase yapılandırması için ⚙ butonuna tıklayın
Lütfen gelen kodu aşağıya girin. Kod 10 dakika geçerlidir.
Uygulamayı kalıcı, çok kullanıcılı ve güvenli şekilde kullanmak için ücretsiz Supabase projesi gereklidir.
Project URL ve anon/public key kopyalayın-- Terapistler tablosu CREATE TABLE therapists ( id uuid PRIMARY KEY DEFAULT gen_random_uuid(), email text UNIQUE NOT NULL, name text, clinic text, pw_hash text NOT NULL, otp_secret text, otp_expiry bigint, otp_attempts int DEFAULT 0, verified boolean DEFAULT false, role text DEFAULT 'therapist', created_at timestamptz DEFAULT now() ); -- Danışanlar CREATE TABLE clients ( id uuid PRIMARY KEY DEFAULT gen_random_uuid(), code text UNIQUE NOT NULL, name text, therapist_email text REFERENCES therapists(email), created_at timestamptz DEFAULT now() ); -- Sonuçlar (şifreli) CREATE TABLE results ( id uuid PRIMARY KEY DEFAULT gen_random_uuid(), client_code text NOT NULL, test_id text NOT NULL, total int, max int, subs jsonb, flagged jsonb, completed_at timestamptz DEFAULT now(), UNIQUE(client_code, test_id) ); -- RLS ALTER TABLE therapists ENABLE ROW LEVEL SECURITY; ALTER TABLE clients ENABLE ROW LEVEL SECURITY; ALTER TABLE results ENABLE ROW LEVEL SECURITY; CREATE POLICY "allow_all" ON therapists FOR ALL USING (true) WITH CHECK (true); CREATE POLICY "allow_all" ON clients FOR ALL USING (true) WITH CHECK (true); CREATE POLICY "allow_all" ON results FOR ALL USING (true) WITH CHECK (true);
Danışanlar
Sonuçlar, Alt Ölçekler ve Mod Analizi
Lütfen aşağıdaki testleri tamamlayın
Yanıtlarınız güvenli şekilde kaydedildi ve terapistinizin paneline iletildi.
Diğer testlere devam edebilirsiniz.
Klinik ve sağlık hizmetleri için önerilen uzantılar:
Önerilen domain kaydediciler: Cloudflare Registrar (en ucuz, gizlilik dahil), Namecheap, Google Domains. Domain fiyatı yılda $10–15.
💡 Önerim: Cloudflare Pages + Supabase (veri) kombinasyonu — ücretsiz, hızlı, güvenli ve global.
X-Frame-Options: DENY, X-Content-Type-Options: nosniff