https://supabase.com/ logo
Join Discord
Powered by
# off-topic
  • m

    magenta

    02/25/2022, 9:13 AM
    is only 2fa via SMS supported, and no TOTP with google authenticator / authy?
  • m

    magenta

    02/25/2022, 9:14 AM
    ah, https://github.com/supabase/gotrue/issues/14
  • m

    magenta

    02/25/2022, 9:18 AM
    is P0 actually high priority, and P1 is low priority?
  • m

    magenta

    02/25/2022, 9:18 AM
    https://github.com/supabase/gotrue/projects/2
  • n

    nah

    02/25/2022, 12:28 PM
    Can we get Firebase phone auth working with supabase now?
  • c

    cbert

    02/25/2022, 7:54 PM
    hi there, I'm fairly new to supabase and trying to store the avatar picture I receive from oauth providers (i.e. Google) via the auth user metadata to a supabase bucket (e.g. 'avatars'). Did anyone implement something like this? Is there a better way (always directly loading from the oauth provider?)? Thanks for your help! BTW: I'm using sveltekit (javascript)
    s
    • 2
    • 2
  • c

    casualgardener

    02/25/2022, 8:02 PM
    i'm gathering that the free tier of Supabase cloud depends on AWS - so in order to host off AWS, I can self-host or go to a higher paying tier?
  • s

    silentworks

    02/25/2022, 10:42 PM
    Avatar picture from OAuth provider
  • c

    chipilov

    02/26/2022, 8:35 PM
    I have a design question: given that it is often suggested to store profile info in a separate table from auth.users (and link that profile table to auth users) and assuming that most apps do NOT allow signed-in users to interact with the app without a completely setup profile - do you think it's better to link the user's items to a record in the custom profile table or directly to auth.users table?
    g
    • 2
    • 5
  • p

    productdevbook

    02/27/2022, 8:40 AM
    Copy code
    permissions: [
          'role:create',
          'role:read',
          'role:update',
          'role:delete',
          'user:create',
          'user:read',
          'user:update',
          'user:delete',
          'org:create',
          'org:read',
          'org:update',
          'org:delete',
          'project:create',
          'project:read',
          'project:update',
          'project:delete',
          'board:create',
          'board:read',
          'board:update',
          'board:delete',
          'task:create',
          'task:read',
          'task:update',
          'task:delete',
        ],
    iam add json db but dont add
    s
    • 2
    • 1
  • s

    silentworks

    02/27/2022, 10:29 AM
    JSON
  • d

    DevLeon

    02/27/2022, 10:44 AM
    Hello πŸ‘‹, I saw this blog post mentioning that Supabase CDN is launched: https://supabase.com/blog/2021/12/03/launch-week-three-friday-five-more-things Is it possible to configurate cache time?
  • s

    SlothGuy

    02/27/2022, 6:57 PM
    hey y'all sorry if this is the wrong place to post this, but a few of my devs were evaluating Supabase and weren't sure if its stable enough for our needs. We were considering these two alternative builds instead: First way: (low cost) -VPS server on DigitalOcean -Setup node server and nginx -API and frontend managed by pm2 and serve through nginx as proxy -Setup managed PostgreSQL at DigitalOcean Second Way: -React app on AWS Amplify/Heroku -Lambda/Serverless node API in aws -PostgreSQL at aws Can anyone provide some commentary on why Supabase can suffice? I'd like to use it, but just need to convince a few people ;P - Thanks!!
    s
    • 2
    • 1
  • s

    Scott P

    02/27/2022, 9:48 PM
    Self-host options
  • d

    DanMossa

    02/28/2022, 1:56 AM
    I created a PR for adding Native Auth to gotrue-dart. Do I have to message someone to take a look at it for feedback? https://github.com/supabase-community/gotrue-dart/pull/61
  • s

    sylar815

    02/28/2022, 9:49 AM
    i was reading this earlier today, https://www.reddit.com/r/Firebase/comments/mf3279/how_to_save_your_ass_from_a_ddos_99999_firestore/ how does supabase handles ddos for instances?
  • p

    pinksheep

    02/28/2022, 11:53 AM
    Hi! Was wondering if anyone is facing a connection issue to Supabase recently? I made no changes but my users are suddenly unable to log in and access their accounts. The exact error is: FATAL: remaining connection slots are reserved for non-replication superuser connections
  • d

    DanMossa

    02/28/2022, 5:10 PM
    Wow just merged my first Supabase PR. Are you guys proud of me?
  • c

    casualgardener

    02/28/2022, 6:56 PM
    thinking about this off the cuff, without experience repelling DDoS, but some quick thoughts: - depends on the style/targetting of DDoS attack - hosted Supabase has no API call pricing, so hypothetically it would be Supabase that takes the hit - could hook Supabase up to a CDN like Cloudflare, same as usual?
  • s

    sylar815

    02/28/2022, 6:58 PM
    Cloudflare integration will work out of the box ?
  • s

    Scott P

    02/28/2022, 7:03 PM
    Cloudflare is already enabled for Supabase instances hosted on their platform. It is possible to put a self-hosted version behind cloudflare without any weird side-effects
  • d

    DanMossa

    02/28/2022, 10:02 PM
    What exactly is the transfer limit? For example I see it's 2gb a month for the free tier. What does that mean?
  • p

    pocin

    03/01/2022, 10:02 AM
    Hey i am stuck in an endless design loop. I have a data model in db and two frontends for the app. One is a web/cli, the other is a discord bot. on web frontend I can use RLS and policies + triggers to implement the business logic into the DB (because the app user authenticates via supabase) but then if i want to provide the same functionality (i.e. user can update their own task) via the discord bot (which is a server side process) i can't find a way to do it without duplicating the business logic i.e. in a discord user runs
    /update task id1234 text:learn foo
    , I receive this data with their discord_id so i know on behalf of what user to create the task. If i use master key i have to re implement the logic that user can update only their task If i use anon key i would have to authenticate the users via discord interaction and store their access token server side? Or is there a way to impersonate the user from the backend?
    y
    g
    • 3
    • 9
  • d

    DanMossa

    03/02/2022, 12:02 AM
    Does the Supabase UI perform any magic behind the scenes? Like can I just use my personal database editor to run queries or does the Supabase UI do something I might miss by using something else?
    s
    • 2
    • 3
  • s

    Scott P

    03/02/2022, 12:13 AM
    Dashboard vs DB tool
  • b

    bluetoothfx

    03/02/2022, 2:04 AM
    Hello guys, I want to ask if there is any connection monitor for supabase? Like a dashboard where I can find different matrix about supabase usage. Thanks
    g
    • 2
    • 1
  • b

    bluetoothfx

    03/02/2022, 2:33 PM
    How to scale self hosted supabase horizontally? Like Database or storage is running out of space. Hosted in digital ocean or Vultr or Vercel vm. What is expected in that situation? 2nd question if self hosted system wants to migrate in cloud is there any guided way to accomplish that? Thanks 😊
  • i

    irrationaljared

    03/02/2022, 2:49 PM
    I am trying to use a trigger to add a row to a user table when an authentication user is added. Now I get this error: Failed to invite user: Database error saving new user Where can I see details about this error? As it is it is impossible to debug...
    s
    • 2
    • 2
  • s

    silentworks

    03/02/2022, 3:25 PM
    Database error
  • c

    charles.morrow

    03/02/2022, 6:00 PM
    How do we upgrade our instance?
    c
    • 2
    • 5
1...194195196...392Latest