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

    garyaustin

    03/26/2022, 8:13 PM
    Search
  • d

    Deleted User

    03/27/2022, 10:14 AM
    hey, im trying to run sql query to db, since there's small changes i need, but i get permit denied eventho im signed in as postgres
  • d

    Deleted User

    03/27/2022, 10:18 AM
    recreated project and it works :D
  • m

    Morza (Chris)

    03/27/2022, 11:16 AM
    Hey guys, I'm looking into supabase and I'm super excited for launch week. I wanted to give it a shot but what is the development workflow, as in having a 'dev' db? I typically code with prisma, rails and they have their own way to this but I'm not sure how best to do it here. Would love to hear y'alls work flows for making sure things are running smoothly before pushing to prod. Same with deployment, how do you time the deploys? Super new to this separated backend stuff
  • m

    Morza (Chris)

    03/27/2022, 3:08 PM
    https://github.com/supabase/supabase/discussions/542 ^ answer to my question
  • d

    Deleted User

    03/27/2022, 3:44 PM
    so uh, why is supabase still redirecting to localhost:3000 instead of domain
    s
    • 2
    • 5
  • d

    Deleted User

    03/27/2022, 3:44 PM
    eventho its setup in settings to redirect to domain
  • d

    Deleted User

    03/27/2022, 3:45 PM
    purgin cache doesnt seem to fix it
  • s

    silentworks

    03/27/2022, 4:22 PM
    Redirecting to localhost instead of your domain
  • d

    DanMossa

    03/27/2022, 6:42 PM
    Is there a channel to discuss PRs and code stuff like that?
  • e

    eunjae

    03/27/2022, 8:17 PM
    Is Supabase down? I'm having symptoms here and there.
  • e

    eunjae

    03/27/2022, 8:19 PM
    ↑ Login is not working in my service. And my serverless functions (that uses supabase js client) are being timed out.
  • d

    denik1981

    03/27/2022, 8:33 PM
    As a developer (contrib) and using the docker localhost installation, how can I manage and get access to the JWTs issue to my invited users? I was able to verify an user but I'm not sure where to go to access his JWTs and make tests with it.
  • t

    tandyman

    03/27/2022, 8:43 PM
    it's working for me @User
  • e

    eunjae

    03/27/2022, 8:44 PM
    working again now. it also didn't work several hours ago a little bit. I guess there's some glitch.
  • e

    eunjae

    03/27/2022, 8:44 PM
    thanks for confirmation!
  • t

    tandyman

    03/27/2022, 8:45 PM
    Yep yep, just saw your message. It can help as a sanity check sometimes, I know the feeling.
  • e

    eunjae

    03/27/2022, 9:02 PM
    I appreciate it. I can go to sleep now 😂
  • l

    Lukas

    03/27/2022, 10:40 PM
    wait so why do people prefer sql databases over noSQL db's
    r
    b
    • 3
    • 3
  • c

    callum.m

    03/28/2022, 2:22 PM
    If you're using supabase migrations with the CLI, do they have to be applied in order? I'm basically wondering how broken things get if you merge PRs with migrations out of order (assuming no actual conflicts between the migrations). Does it use the stored timestamps to figure out it's already run and skip if so, or does it find the latest one and only run migrations with a filename after that one?
  • r

    robin

    03/28/2022, 3:51 PM
    Hi all, I hope this is the right place to ask a question! I'm developing an app that only uses third-party providers for authentication. Currently they're all set to redirect to the app domain. What would be the approach you recommend to work with this in a local dev environment? It's difficult to work on the "signed-in" parts of my app because I have to fake it all (so there's no guarantee that it actually works) and then remember to un-fake it before deploying...
    g
    • 2
    • 2
  • g

    garyaustin

    03/28/2022, 6:42 PM
    Send OTP via Email. I think this is an interesting new feature in today's launch week blog https://supabase.com/blog/2022/03/28/community-day. Basically you no longer need to rely on an email redirect to confirm email, password changes, etc. This is very important for single page apps and home screen apps where redirect opens a different browser window from the app. You can add {{.Token}} to your email templates and get (see pic below): Then in your code ask for the token/code and call this:
    Copy code
    const {user,error} = await supabase.auth.verifyOTP ({
        email:'name@email.com',
        token:'owOWaODcyzG0ItuHQ24ipA',
        type:'signup'   //use correct type for operation
    })
    Cool! This solves one of the biggest signup/auth issues I had with my PWA (homescreen app)
  • r

    robin

    03/28/2022, 7:00 PM
    Isn't this implementing a whole other method for singing in though? I do want to test the sign in process using third-party providers, not implement a new one. (I think OTP / magic link authentication makes for not great UX.)
    g
    • 2
    • 6
  • g

    garyaustin

    03/28/2022, 7:10 PM
    local dev signin urls
  • j

    justcode123

    03/29/2022, 3:04 AM
    To connect supabase locally, do i clone the github repo?
  • j

    justcode123

    03/29/2022, 3:05 AM
    I want to use it with my already ready PostgreSQL
  • d

    daviscup

    03/29/2022, 2:04 PM
    Leaking the user's own auth 'User UID' is no security risk, right?
    g
    • 2
    • 2
  • g

    garyaustin

    03/29/2022, 2:18 PM
    risk of exposed UUID
  • l

    libovness

    03/29/2022, 3:31 PM
    hi - is it possible to have all authentication emails come from our own domain rather than
    app.supabase.io
    ?
    s
    • 2
    • 3
  • r

    Revxrsal

    03/29/2022, 5:44 PM
    o/ question, the entire supabase api (auth and stuff) is RESTful right? no websockets
    g
    • 2
    • 6
1...205206207...392Latest