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

    Lukas

    12/22/2022, 3:42 AM
    (with nextjs & supabase)
  • e

    elamandeep

    12/22/2022, 5:42 AM
    how to use
    sql join
    in api ?
  • g

    gisborne

    12/22/2022, 6:09 AM
    A new moral imperative for the new AI age: your hosting company should not be able to just read your data. For certain niches, this might be a compelling feature. ?
  • e

    elamandeep

    12/22/2022, 6:31 AM
    any help?
  • z

    zilchg00d

    12/22/2022, 6:41 AM
    What about this?https://stackoverflow.com/questions/64996432/how-to-query-using-join-in-supabase
  • z

    zilchg00d

    12/22/2022, 6:42 AM
    I'm curious if any of you supabase wizards out there have ever messed around with trying to configure a realtime database on the localhost for something like an electron app. Anyone know of any projects doing this?
  • e

    elamandeep

    12/22/2022, 6:44 AM
    I'm using supabase api
  • t

    Thomas Allmer

    12/22/2022, 11:12 AM
    hey there 👋 I'm somewhat surprised that the es module version from
    @supabase/supabase-js
    does not work directly in the browser... opening the following html file in a "normal" web server (e.g. not code transformations)
    Copy code
    html
    <script type="importmap">
      // ... import map data
    </script>
    <script type="module">
      import { createClient } from "@supabase/supabase-js";
      console.log(createClient);
    </script>
    does not work and throws an error. It's because of 3 reasons 1. there are imports like
    import RealtimeChannel from './RealtimeChannel';
    which a browser can not resolve (needs to be
    RealtimeChannel.js
    ) 2.
    cross-fetch
    has a browser version that is NOT an es module 3.
    websocket
    does not have an es module version at all I think all of these should be able to be solved if there is interest in making it work... so basically my question is Would you like superbase-js to work directly in the browser without any build/transformation steps? I opened an issue with some more details - and I'm totally willing to work on this 🤗 https://github.com/supabase/supabase/issues/11180
    s
    • 2
    • 22
  • j

    JuanFcoRomero

    12/22/2022, 11:33 AM
    Hello, I am analyzing whether to use Supabase in an app made with Flutter. I don't quite understand how authentication works. Once the user is authenticated with OAuth, is the connection to the database active? Should we close the connection to the database at some point or does the library take care of that?
  • j

    JuanFcoRomero

    12/22/2022, 12:12 PM
    How I can validate if a user is authenticated to give him access to the database information?=
  • i

    IThinkWong

    12/22/2022, 1:18 PM
    I have a question. Do supabase edge functions support npm modules? This is the case in the v1.28 version of Deno
  • g

    garyaustin

    12/22/2022, 1:58 PM
    All this is not a help thread. Please ask in #1006358244786196510 .
  • s

    silentworks

    12/22/2022, 2:09 PM
    There is literally a channel called #1006358244786196510 for these sort of questions and you haven't provided any information as to what you have tried or what didn't work. Please use the appropriate channel.
  • s

    silentworks

    12/22/2022, 2:13 PM
    hey there 👋
  • s

    silentworks

    12/22/2022, 2:16 PM
    I will be removing #1006358244786196510 related questions posted in this channel from now on, please use the correct channel for this.
  • a

    Anurag

    12/22/2022, 3:05 PM
    hey there! can i get some example repo including a nextjs implementation of supabase auth using the latest auth helpers.
    s
    • 2
    • 2
  • c

    Chensokheng

    12/22/2022, 5:46 PM
    I come across this page https://supabase.com/supasquad. I wonder how to become a
    SupaSquad
    members?
  • g

    garyaustin

    12/22/2022, 5:49 PM
    https://supabase.com/supasquad In general it is by invitation. I don't know if the form at the link works or not as most recent members have come from a Supabase employee inviting them.
  • c

    Chensokheng

    12/22/2022, 5:51 PM
    The form link is redirect to discord server. Thank you for information
  • s

    strxkeskit

    12/22/2022, 8:02 PM
    How do we access logs on a self host , any particular directory where the logs are stored ? I am having smtp issues , the same smtp settings works for supabase but doesnt work for supabase self host .
  • g

    garyaustin

    12/22/2022, 8:20 PM
    https://discord.com/channels/839993398554656828/839993398554656831/1055488963034488852 Wrong thread.
  • s

    strxkeskit

    12/22/2022, 8:21 PM
    sorry my bad
  • m

    Migu

    12/22/2022, 10:18 PM
    which github repository should I search into if I'm curious to see the SQL generated by the JS methods to create an auth.user (
    auth.signUp
    /
    auth.admin.createUser
    / etc)? supabase/supabase-js ? supabase/supabase ? supabase/gotrue ?
  • g

    garyaustin

    12/22/2022, 10:23 PM
    supabase/gotrue-js would show you the js to url (REST API). supabase/gotrue would show you the server code that runs and I guess the SQL, but the SQL is just accessing all the different auth tables to carry out the server code, not something you would ever use. In other words there is no SQL interface to do auth, just the REST API.
  • m

    Migu

    12/22/2022, 10:36 PM
    Hmm I see, thanks for the input. I guess by server code you maybe mean stuff like this https://github.com/supabase/gotrue/blob/master/api/signup.go, in Go. Oh well I was hoping to find some stuff like
    insert into auth.users
    🥲 we're migrating a project that needs 100k+ accounts and whilst the public data is easy with a single insert, auth users are a lot longer because we're insert them one by one
    g
    • 2
    • 2
  • e

    Elfhild

    12/23/2022, 12:38 AM
    Can i use supabase on c# without the SDK? are there rest apis? is there a documentation for the rest apis?
  • g

    garyaustin

    12/23/2022, 12:43 AM
    Yes to all, except for realtime. Please ask these type of questions in help.
  • j

    Jesuscc9

    12/23/2022, 2:36 AM
    Hi 😄 , in previous supabase versions we had
    supabase.auth.setAuthCookie(req, res)
    , is there any replacement to that function in the new supabase versions
  • j

    Jesuscc9

    12/23/2022, 2:39 AM
    i was wondering if its the same as
    supabase.functions.setAuth(token)
  • o

    Olyno

    12/23/2022, 2:43 AM
    Hey Please ask your question in #1006358244786196510, it's a more appropriate place for that
1...323324325...392Latest