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

    lorencerri

    01/01/2022, 2:25 AM
    Thank you! I'll check it out
  • m

    MӨЯΣKƬZ

    01/01/2022, 12:26 PM
    How do i build a paswordless login page , that send a pin to your email for authentication and making an account ?
  • t

    tourdownunder

    01/01/2022, 1:39 PM
    It’s called Magic Link. See https://supabase.com/docs/guides/auth/auth-magic-link
  • m

    mattaye

    01/01/2022, 3:25 PM
    Hello. Has anyone used Postgraphile to wrap their Supabase db? Really enjoying supabase for many reasons, but not really getting on with the api, and postgraphile seems like it would be an awesome match... is it possible? Thanks https://www.graphile.org/postgraphile/
  • g

    gleki

    01/01/2022, 3:27 PM
    can you please point at my mistake? im doing
    Copy code
    with au as (SELECT set_config(
      'request.jwt.claims',
      '{ "sub": "MY UID from auth table ", "email": "MY EMAIL from auth table" }',
      false
    ))
    select * from auth.uid();
    and it always returns
    null
    c
    • 2
    • 13
  • j

    jdgamble555

    01/01/2022, 5:41 PM
    Random UI Question for everyone: Generally speaking, do you: A.) Query your data with subscriptions so that likes/votes/bookmarks (or whatever) get updated automatically on click (and always stay updated) B.) Query your data with promises and update the page optimistically on click C.) Query your data with promises, but somehow use a hybrid solution (please explain if you do this) I keep going back and forth on best practices here...
    s
    • 2
    • 2
  • s

    Scott P

    01/01/2022, 5:56 PM
    UI-Data interaction - Best Practice
  • t

    thyme

    01/02/2022, 6:36 AM
    We are minting our own jwt using our secret key from supabase. However, when we pass this in to the getUser call it says that it can't read the user claim
  • t

    thyme

    01/02/2022, 6:36 AM
    Is this intended behavior?
  • a

    Anoushk

    01/02/2022, 6:48 AM
    whats the default supabase uses for creating postgres columns "" or ''
  • c

    chipilov

    01/02/2022, 2:25 PM
    Setting JWT claims manually from a SQL workbench
  • c

    c4p

    01/02/2022, 5:05 PM
    Docs indicate that I have to set alter table "your_table" replica identity full; in order for DELETE events to trigger in subscription. How do I do this?
  • s

    Scott P

    01/02/2022, 6:04 PM
    Run that command in the SQL editor (replace
    "your_table"
    with the name of your table without quotes)
  • c

    c4p

    01/02/2022, 6:15 PM
    @User thx, got a "Success. No rows returned". but DELETEs still not firing. It there another step?
    g
    • 2
    • 18
  • g

    garyaustin

    01/02/2022, 6:36 PM
    Delete subscription not working
  • m

    Mac

    01/03/2022, 10:58 AM
    Hey peeps, what's cooking?
  • u

    ! Class self.PythonAddict = True

    01/03/2022, 1:16 PM
    My Raspberry pi 2 in its official case
  • v

    Valerian

    01/03/2022, 1:59 PM
    Hi there, does anyone know if there is a way to log slow queries on supabase?
    k
    • 2
    • 2
  • u

    UnderNightcore

    01/03/2022, 6:43 PM
    How advanced is the project regarding self-hosting?
    s
    a
    • 3
    • 11
  • u

    UnderNightcore

    01/03/2022, 6:43 PM
    Is it actually possible to build a serious project with it?
  • s

    Scott P

    01/03/2022, 7:08 PM
    Self-hosting
  • o

    oliviercp

    01/04/2022, 4:46 AM
    I have a general question about pricing. I see that there is a Pro and Pro Pay as you go plan. I was wondering for the Pay as you go plan, do we get what is include in the pro plan and when we exceed the limits we pay for the extra usage? For example: In the pro plan i get 100GB of storage. So with the Pay as you go plan i will start paying 0.021$/gb of storage after i reach 100GB?
    o
    c
    • 3
    • 4
  • k

    ktosiek

    01/04/2022, 11:28 AM
    log slow queries
  • o

    Olyno

    01/04/2022, 12:05 PM
    Pricing question
  • d

    Deleted User

    01/04/2022, 12:39 PM
    Copy code
    const avatarFile = event.target.files[0]
    const { data, error } = await supabase
      .storage
      .from('avatars')
      .upload('public/avatar1.png', avatarFile, {
        cacheControl: '3600',
        upsert: false
      })
    What does the filepath refer to here? Anyone? Edit: This is from the
    f
    a
    • 3
    • 15
  • d

    drex

    01/04/2022, 2:44 PM
    yo is there a wrapper for golang
    s
    • 2
    • 3
  • s

    Scott P

    01/04/2022, 2:55 PM
    Supabase golang - client libs
  • n

    noah-koala

    01/05/2022, 12:17 AM
    Hi all, any tips for having a dev and a prod database?
  • n

    noah-koala

    01/05/2022, 12:18 AM
    Any way to keep them in sync and do you use two separate projects or just use two versions of every database table?
  • e

    Eduardo Lopez

    01/05/2022, 4:39 AM
    I use two projects, and run a cron job each day with https://github.com/ankane/pgsync to sync prod data into staging
1...173174175...392Latest