https://supabase.com/ logo
Join DiscordCommunities
Powered by
# off-topic
  • b

    benjamin_dobell

    01/17/2023, 11:20 PM
    https://github.com/microsoft/TypeScript/pull/52230 šŸŽ‰ It's about to get a whole lot easier to share code between Node.js and Deno (i.e. Supabase Edge Functions).
  • d

    DYELbrah

    01/18/2023, 1:18 AM
    Hey guys anyone know if there's a HUGE performance boost in reads if we add a GIN index on a ts_vector column and use Full Text Search? I want to simply create a ts_vector column in a view which will allow me to use the supabase client (JS) to query that generated column. Issue is unmaterialized views can't have indexes, thus I'm wondering if it's that big a deal
  • o

    Olyno

    01/18/2023, 1:23 AM
    Oooooh this is interesting! If i got it, you don't have to precise the ``.ts`` extension at the end of imports in Deno?
  • b

    benjamin_dobell

    01/18/2023, 1:30 AM
    Basically Deno requires
    .ts
    extensions. The problem there is that Node.js requires that you don't include file extensions. Node never actually ran TS directly anyway, you had to transpile to JS. Webpack (etc.) based TS bundlers/transpilers were generally cool with
    .ts
    , so if you used them you were fine. However, compilation with the regular TS CLI using node module resolution failed if you included
    .ts
    in your imports. With this change, you'll be able to use
    .ts
    in your imports and the regular TS compiler will be able to process your code. So basically, once TS 5.0 ships, everyone should migrate to including file extensions in their imports.
  • o

    Olyno

    01/18/2023, 1:35 AM
    Damn, this is really good! Thank you for explanations :p
  • d

    DenNis

    01/18/2023, 11:23 AM
    Hi on the tutorial for local Development the limitations of a local supabase are listed down the page. One of them is the missing "Functions interface" (
    The Functions interface is coming soon.
    ). What means the "Functions interface"?
  • d

    DenNis

    01/18/2023, 11:23 AM
    https://supabase.com/docs/guides/resources/supabase-cli/local-development#limitations
  • d

    DYELbrah

    01/18/2023, 2:40 PM
    If you log into your db directly on the Supabase website there's a user interface to manage your functions. 1. For Edge functions, it's an icon on the left hand of your project. 2. For RPC functions, you can find it via your project > database icon > functions. These pages can't be found via the local dev docker images.
  • s

    salzar

    01/18/2023, 3:30 PM
    Does Auth UI work with nuxt or only react?
  • h

    Hallidayo

    01/18/2023, 4:18 PM
    Hi @salzar - At the moment Auth Ui works with React, SolidJS and Svelte: https://github.com/supabase/auth-ui/tree/main/packages
  • s

    silentworks

    01/18/2023, 4:20 PM
    It doesn't work with Svelte as yet, but we are working on it. I think I saw someone on Twitter mentioning that they were building a version that works with VueJS.
  • e

    elliott

    01/20/2023, 7:23 AM
    Also curious about this - bumping
  • s

    sagarkava

    01/20/2023, 8:11 AM
    Hello folks, First of all thanks a lot, you all has supported us through last year and with PH launch. šŸ™šŸ¾ šŸ™ŒšŸ¾ With your and community support, Video SDK is nominated for Product Hunt's best "**Developer Tool**" and "Most Innovative Use of Technology" category for Golden Kitty Awards 2022! 😻 → Please take 30 seconds and go vote! → Head to product hunt on the below link! https://www.producthunt.com/golden-kitty-awards/developer-tools https://www.producthunt.com/golden-kitty-awards/most-innovative-use-of-technology Find "**Video SDK2.0**" and press the ā–² up arrow. Thanks a lot in advance, Help us turn this success party by spreading the word -> https://ctt.ac/13d90 šŸŽŠ
  • f

    flapili (FR, bad EN)

    01/20/2023, 2:06 PM
    Hi, I think I found a bug with timeout
  • f

    flapili (FR, bad EN)

    01/20/2023, 2:07 PM
    Copy code
    sql
    SELECT rolname, rolconfig
    FROM   pg_roles;
    => "anon ": ["statement_timeout=3s"]
  • f

    flapili (FR, bad EN)

    01/20/2023, 2:10 PM
    should I open an issue or is it a know bug ?
  • b

    Barba

    01/20/2023, 7:12 PM
    Hi there, do we have a way from supabase website to see the tables and rations in a graphic way? Thanks!
  • b

    Barba

    01/20/2023, 7:21 PM
    I found this https://supabase-schema.vercel.app/?ref=madewithsupabase
  • r

    RB_Gaura

    01/20/2023, 11:51 PM
    is supabase down for anyone right now?
  • j

    JoshLopez

    01/20/2023, 11:55 PM
    yes i cant login
  • r

    rlightner

    01/20/2023, 11:56 PM
    Right as I pushed something out too.. :0
  • g

    garyaustin

    01/20/2023, 11:58 PM
    The dashboard appears down. Instance is still running.
  • r

    rlightner

    01/20/2023, 11:58 PM
    and we're back
  • g

    garyaustin

    01/20/2023, 11:59 PM
    Yep
  • r

    rlightner

    01/20/2023, 11:59 PM
    wss: for
    postgres_changes
    in my app was failing, so more than just dashboard
  • g

    garyaustin

    01/21/2023, 12:01 AM
    Yes, I see that on mine now. That is not actually on your instance but likely the realtime cloud, but still would impact users.
  • m

    madjar

    01/21/2023, 1:46 AM
    Hey guys, im working on a solution for vite based microfrontends boilerplate in combination with supabase so if anyone's interested hit me up
  • r

    RB_Gaura

    01/21/2023, 6:35 AM
    sounds interesting
  • d

    DaLink

    01/21/2023, 3:37 PM
    why does supbase return a 401 when loggin in with an provider?
    https://xx.supabase.co/auth/v1/user
  • d

    DaLink

    01/21/2023, 3:39 PM
    comes from the offial docs``` constructor() { this.supabase = createClient(environment.supabaseUrl, environment.supabaseKey) }```
1...338339340...392Latest