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

    Trey

    02/09/2023, 6:59 PM
    Is anyone else having this issue? Pretty high priority if it's widespread https://discord.com/channels/839993398554656828/1073316698456866936
  • g

    garyaustin

    02/09/2023, 7:01 PM
    I commented there my dashboard is down for github log in also.
  • s

    silentworks

    02/09/2023, 7:11 PM
    We are currently investigating an issue with the dashboard, if you are having trouble signing in, do note that we are aware of it and are working to resolve it. https://status.supabase.com/incidents/gqrfz3ndv7c4
  • g

    garyaustin

    02/09/2023, 7:23 PM
    For the fix on the dashboard to work for me I had to hard refresh the browser...ctrl f5.
  • s

    silentworks

    02/09/2023, 7:26 PM
    Everything should be working again now. And yes it might require a hard refresh.
  • d

    DYELbrah

    02/11/2023, 4:55 AM
    Hey guys, I'm curious if anyone is familiar with the pros and cons of using Supabase alongside NextJS/Prisma instead of simply a React Front-end and querying Supabase directly. My main logic for using Next/Prisma/Supabase stack is that I can keep all my supabase calls in the server instead of exposing anything to the client. Not sure if there's really much other benefit. My app is mostly CRUD operations.
  • u

    \ ឵឵឵

    02/11/2023, 4:51 PM
    What's the state of the world these days as far as sharding/HA is concerned? The most recent info I could find is a mention from July last year: https://github.com/supabase/supabase/discussions/1504?sort=top
  • g

    garyaustin

    02/11/2023, 4:58 PM
    I've seen nothing since that.
  • d

    DYELbrah

    02/12/2023, 4:38 AM
    Hey guys, sort of off-topic but lets say I have multiple components with getServerSideProps like this:
    Copy code
    export const getServerSideProps = async (ctx: GetServerSidePropsContext) => {
      const supabase = createServerSupabaseClient(ctx);
      const {
        data: { session },
      } = await supabase.auth.getSession();
    
      if (!session)
        return {
          notFound: true,
        };
    
      const { data: customers, error } = await supabase
        .from("customer")
        .select("*");
      if (error) throw new Error(error.message);
      return {
        props: {
          customers,
        },
      };
    };
    Is there a way I can avoid having to duplicate the portion:
    Copy code
    const supabase = createServerSupabaseClient(ctx);
      const {
        data: { session },
      } = await supabase.auth.getSession();
    
      if (!session)
        return {
          notFound: true,
        };
    every single time I want to check for a session?
    s
    • 2
    • 1
  • e

    Ellis

    02/12/2023, 8:26 AM
    What is the idle timeout for direct PG connections?
  • m

    madjar

    02/12/2023, 5:12 PM
    hey, any group chat option for chatgpt threads yet?
  • s

    Shannon Code (emblem vault)

    02/12/2023, 6:30 PM
    is there no support here?
  • s

    Shannon Code (emblem vault)

    02/12/2023, 6:30 PM
    can't find one
  • g

    garyaustin

    02/12/2023, 7:03 PM
    What are you looking for exactly? #1006358244786196510 is the main forum for asking for help and questions. But this is mainly a user helping user forum and is not strictly monitored by the Supabase team, although they do participate.
  • s

    Shannon Code (emblem vault)

    02/12/2023, 7:04 PM
    I reached out via the site
  • g

    garyaustin

    02/12/2023, 7:05 PM
    Does that mean you contacted support using the dashboard? You don't say which site or what you are wanting.
  • s

    Shannon Code (emblem vault)

    02/12/2023, 7:10 PM
    Yes I did, sorry having issue with Supabase. My server less system keeps crashing the db
  • s

    Shannon Code (emblem vault)

    02/12/2023, 7:10 PM
    Making the whole system brittle
  • s

    Shannon Code (emblem vault)

    02/12/2023, 7:11 PM
    And our site just got national news coverage, so 🤷‍♂️😭
  • g

    garyaustin

    02/12/2023, 7:16 PM
    Yeah, will be hard for us to help. I assume you have restarted the instance. Are you on pro plan? "Crashing" is not much info. Do you get to see the logs after the crash and is there useful info? Are you potentially running out of disk space, memory?
  • x

    Xolify

    02/12/2023, 8:23 PM
    You could create a file called supabase and export the client that you made from there and import that client anywhere in your project and use it
  • u

    Unknown Member

    02/12/2023, 9:06 PM
    Omg the new Docs section is so amazing
  • u

    Unknown Member

    02/12/2023, 9:06 PM
    the icons are so cute
  • w

    well

    02/12/2023, 10:01 PM
    How much Ram do we need to self host supabase?
  • u

    水瓶座ーcindrmon

    02/13/2023, 5:04 AM
    can anyone help me with managing multiple environments when making a nuxt3 + supabase project? we can talk abt it on #1074324560389865624
  • m

    MarcoSantonastasi

    02/13/2023, 2:20 PM
    Quick question. What is the most likely venue I can get help on Edge Function testing etc..?
  • p

    pid1

    02/13/2023, 8:07 PM
    I had the same question. I just write to unit test and use whichever unit testing framework I want. I make e2e testing a priority as well
  • m

    MarcoSantonastasi

    02/13/2023, 9:53 PM
    Ok, I did use Deno.test with a bit of difficulty.
  • m

    MarcoSantonastasi

    02/13/2023, 9:54 PM
    assetEquals does not compare fixtures Responses correctly. Don’t know why…
  • w

    well

    02/13/2023, 9:56 PM
    I use netlify functions
1...348349350...392Latest