https://supabase.com/ logo
Join Discord
Powered by
# help
  • n

    Nick

    01/07/2022, 2:01 PM
    Hey folks, I created a new trigger following almost verbatim this guide: https://supabase.com/docs/guides/auth/managing-user-data#using-triggers, and now my user creation step fails. How can I dig into what's going wrong? I don't see any issues highlighted in the logs or anything
    s
    • 2
    • 10
  • n

    Nick

    01/07/2022, 2:24 PM
    New User Trigger
  • m

    Mike92988

    01/07/2022, 2:30 PM
    Anybody have any idea why I would only sometimes run into an ETIMEDOUT error? it doesn't happen every time I run a certain route but almost like every 3rd or 4th, none of the logic has changed but I just keep getting the same error
    j
    • 2
    • 1
  • p

    pelana

    01/07/2022, 2:41 PM
    Hi guys!, question here: its possible to use behind the scene and very transparent an IDP like Cognito with supabase ?
  • n

    Nick

    01/07/2022, 4:51 PM
    Ok starting to get the hang of it here, supabase is dope. One (last, I think) higher level question: I understand that
    signUp
    returns an obfuscated user object when trying to use an email address that already exists for security purposes. That's all good, but what is the general UX flow to use here then? I can say "Check your email" but what happens then in the case that a user is using their real email address and just happens to have forgotten they already have an account? They'll never get an email, and they'll be stuck on this screen
    j
    • 2
    • 1
  • m

    magpow

    01/07/2022, 6:31 PM
    Hello gang, we like to use supabase for a community project. Our hosted postgres db lies uses https://www.digitalocean.com/products/managed-databases/ We currently run our apps on our own paas (caprover) in docker containers. Is it possible to use a hosted postgres db? Thanks.
    m
    • 2
    • 5
  • n

    Nick

    01/07/2022, 6:46 PM
    Is there a known bug with magic link redirects? I've updated my base project URL in my auth settings but not seeing that reflected my magic link redirects
  • n

    Nick

    01/07/2022, 6:47 PM
    I'm trying with an explicit redirectTo directive too:
    Copy code
    const { user, session, error } = await supabase.auth.signIn({
          email,
          redirectTo: 'http://localhost:3000/account',
        });
    I'm only getting links to
    http://localhost:3000
  • n

    Nick

    01/07/2022, 6:48 PM
    ah sorry, misunderstood the options object: https://supabase.com/docs/reference/javascript/auth-signin#sign-in-with-redirect
    j
    • 2
    • 2
  • j

    jonny

    01/07/2022, 6:53 PM
    sign up with preexisting user behaviour
  • j

    jonny

    01/07/2022, 6:54 PM
    ETIMEDOUT error
  • j

    jonny

    01/07/2022, 6:57 PM
    user roles
  • m

    magpow

    01/07/2022, 7:35 PM
    use digital ocean hosted db with supabase docker
  • j

    jarryd

    01/07/2022, 8:52 PM
    Is it possible to have multiple values in a single column? I have a "tags" table with a list of potential tags and another table with users and they can have up to 5 tags so prefer to store them under the user table with a column "tags" with values "a,b,c,d,e" for example instead of have to create 5 columns "tag_1" - "tag_5". I tried have the user/tags column link with a foreign key to the tags table but only lets me select 1 tag from the tag table.
    t
    k
    • 3
    • 7
  • t

    tourdownunder

    01/07/2022, 9:08 PM
    User - Tag relationship
  • e

    erinstearns

    01/08/2022, 1:10 AM
    syntax for textSearch in curl? "Products?title=textSearch.${dummy_title}" is not working. is my syntax wrong?
    t
    • 2
    • 3
  • t

    tourdownunder

    01/08/2022, 1:23 AM
    textSearch using curl
  • f

    Fishball_Noodles

    01/08/2022, 1:46 AM
    what is the ratelimit is calling once every 5 seconds too much
  • g

    garyaustin

    01/08/2022, 1:49 AM
    You don't give much info, but it could be this: "the default rate limit for auth emails provided by Supabase is 30 new users per hour, if doing a major public announcement you will likely require more than this" from https://supabase.com/docs/going-into-prod
  • f

    Fishball_Noodles

    01/08/2022, 1:49 AM
    API Requests not auth
  • g

    garyaustin

    01/08/2022, 1:51 AM
    Are you getting an error or just asking? I'm not sure there is currently any set limit, other than what your instance can support processor/memory wise.
  • h

    Homemadesteam58

    01/08/2022, 4:38 AM
    Hey! Does anybody know how to restrict the database to 1 insert at a time? I want to build an app that needs data synchronized but it also relies on that same data for validation. Thanks!
    t
    • 2
    • 3
  • t

    tourdownunder

    01/08/2022, 5:52 AM
    Postgres integrity
  • m

    magpow

    01/08/2022, 7:45 AM
    Hi gang would appreciate someone taking a brief look here.
  • o

    oliviercp

    01/08/2022, 8:19 AM
    Hi! Is it safe to update the search() fonction on the storage schema? Because i would need to add a created_by column, but the search function with is used but the sdk list() function only returns predefined columns. Or is there another work around for this without having to edit the storage schema? Thanks!
  • n

    Nam Nguyen

    01/08/2022, 8:22 AM
    are there diff feature between self-hosting and https://app.supabase.io/
  • f

    Fishball_Noodles

    01/08/2022, 8:31 AM
    How do you add a date value to a table using python I tried posting a raw string but it wasn't recognisable I tried posting the timestamp but it wasnt a valid input syntax You can't post a python datetime obj cos its not json serialisable
  • m

    Michael Ketzer | streamgeist.com

    01/08/2022, 8:23 PM
    Hey! Just one quick question, is this the actual solution to have RLS working with SSR with NextJS? The example for NextJS does not include this case, sadly.
  • l

    LukeB

    01/08/2022, 8:37 PM
    Where can I find a list of error messages and codes that could be returned from GoTrueClient.signIn
  • e

    erinstearns

    01/08/2022, 8:39 PM
    best filter for searching? I have a marketplace I'm adding a searchbar to and want to be able to search for similar words. case insensitive, mispelled, extra spacing etc. Which supabase filter would be best for that? They don't have good descriptions so not sure what they specifically do. Thanks
1...187188189...316Latest