https://supabase.com/ logo
Join DiscordCommunities
Powered by
# help
  • d

    darora

    10/10/2021, 2:50 AM
    Sorry about that! Could you email support@supabase.io with your project ref and a description of the symptoms you're seeing?
  • d

    darora

    10/10/2021, 3:35 AM
    Mount your certs to the Kong container and edit the config as needed-that'll take care of the API endpoints. For postgres connections, you'll need to mount them to the postgres container as well, and edit the config there for it to take effect. Alternatively, you can front all of those with your own ingress layer that performs SSL termination, if that's more straightforward in your environment.
  • v

    Village

    10/10/2021, 3:36 AM
    I only got like half of that 🤣 very new to self hosting and docker schtuff, I've figured out a set of certificates for my postgres container, pgadmin is getting cranky about them though which has me confused, haven't looked at how to mount to Kong yet
  • v

    Village

    10/10/2021, 3:38 AM
    Thanks!
  • a

    anand

    10/10/2021, 5:07 AM
    has anyone implemented phone authentication using plivo instead of twilio?
  • p

    Psymin

    10/10/2021, 5:23 AM
    anyone using Supabase combined with a Netlify or Vercel template?
  • b

    bh

    10/10/2021, 8:08 AM
    is there more comprehensive reference documentation of the 'query lanugage/syntax' used for
    .or()
    selecter (https://supabase.io/docs/reference/javascript/or) ?
  • b

    bh

    10/10/2021, 8:08 AM
    I want to do "col1 is not null or col2 is not null'
  • a

    Adisa

    10/10/2021, 9:47 AM
    Morning folks... I'm getting up to speed with JS, and not really clear on what this line of code actually means / does...
    const { error } = await supabase.auth.signIn({ email })
  • a

    Adisa

    10/10/2021, 9:48 AM
    I get that it's sigining in with email, but the
    const { error }
    part confuses me.
  • a

    Adisa

    10/10/2021, 9:50 AM
    why don't we have
    user, session
    also? Btw this is taken from the example Svelte app
  • c

    copple

    10/10/2021, 10:02 AM
    the
    or()
    filter should be combined with any PostgREST operators: https://postgrest.org/en/v8.0/api.html#operators
    .or( col1.is.null, col2.is.null )
  • m

    mlloydw

    10/10/2021, 10:03 AM
    You'll want to check out destructuring. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment
  • a

    Adisa

    10/10/2021, 10:04 AM
    Thanks, this is just what I was looking for. Much appreciated
  • l

    LuddensEkko

    10/10/2021, 12:36 PM
    trying to submit my hak submission but got this issue when deploying, please look into it https://github.com/supabase/supabase/issues/3474
    s
    • 2
    • 4
  • m

    Mihai Andrei

    10/10/2021, 5:46 PM
    Are you using this inside useffect?
    g
    n
    • 3
    • 62
  • n

    Null

    10/10/2021, 4:29 PM
    Copy code
    js
      const realtime = supabase
        .from("posts")
        .on("INSERT", (payload) => {
          setMessages([...messages, payload.new]);
          console.log(payload);
        })
        .subscribe();
  • n

    Null

    10/10/2021, 4:29 PM
    When subscribing to realtime changes, one single change causes it the run multiple times, making my app crash in the process. Am I doing something wrong?
  • n

    Null

    10/10/2021, 4:35 PM
    Tbh the docs on realtime changes don't explain much of anything on how to go about using it correctly.
  • v

    Village

    10/10/2021, 4:40 PM
    Where would I put the certificates for setting up Kong with SSL?
  • v

    Village

    10/10/2021, 4:40 PM
    Self-hosting
  • m

    Mihai Andrei

    10/10/2021, 5:46 PM
    Realtime
  • x

    Xzeta

    10/10/2021, 10:38 PM
    how do you work out the email confirmation for user registration if you're running locally with docker ?
  • c

    carlomigueldy.eth

    10/11/2021, 4:37 AM
    What are your recommended tools for debugging stored procedures, functions, triggers? I'd wanna know why my trigger doesn't work as expected. Always returning 500 status code to client. A UI with logs would be great
  • u

    ulisses

    10/11/2021, 1:42 PM
    Hello. Is it possible to add multiple urls to the
    Site url
    setting? Like.. one for development and one for production?
    s
    • 2
    • 8
  • m

    MDobs

    10/11/2021, 3:15 PM
    For Twitter 3rd party login, which value is the
    Twitter client ID
    ? I get App Key, App key secret and bearer token, is it the App key?
  • s

    silentworks

    10/11/2021, 3:35 PM
    Is this for making requests to the Twitter API?
  • m

    MDobs

    10/11/2021, 3:59 PM
    for login @User
  • m

    MDobs

    10/11/2021, 4:09 PM
    ah I think it is the api key
    Enter your API Key (client_id) and API Secret Key (client_secret) saved in the previous step.
  • o

    Olyno

    10/11/2021, 7:37 PM
    This is a good question actually. You may want to create an issue for that, and someone gonna work on it later. I can try to make that change if needed
1...106107108...316Latest