Skip to content

crnobog69/bitarctic-re

Repository files navigation

БитАрктик:re

stars   REPO SIZE   Last Commit   LICENSE  

Хостовање:

  1. Форкујте репозиторијум
  2. Направите Supabase профил
  3. Копирајте Project URL и anon public кључеве
  4. Можете креирати .env датотеку и подесити променљиве овако:
PUBLIC_SUPABASE_URL=
PUBLIC_SUPABASE_ANON_KEY=
  1. У SQL Editor на Supabase залепите ово:
-- First, drop existing policies
drop policy if exists "Enable insert for anonymous users" on pastes;
drop policy if exists "Enable select for anonymous users" on pastes;
drop policy if exists "Anyone can create pastes" on pastes;
drop policy if exists "Anyone can read pastes" on pastes;

-- Disable RLS temporarily to ensure clean slate
alter table pastes disable row level security;

-- Enable RLS again
alter table pastes enable row level security;

-- Create policies with explicit permissions
create policy "Public insert access"
on pastes for insert
with check (true);

create policy "Public select access"
on pastes for select
using (true);

-- Grant necessary permissions to the anon role
grant usage on schema public to anon;
grant all on pastes to anon;
grant usage on all sequences in schema public to anon;

Note

drop policy није потребан, он служи само ако је корисник погрешио.

  1. Направите Vercel профил (са вашим Github или Gitlab налогом)
  2. Изаберите Ваш репозиторијум и кликните на Import
  3. Додајте Environment Variables и подесите променљиве (или увезите из датотеке .env)
  4. Кликните Publish.

About

БитАрктик:re | Self-hostable PasteBin

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published