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

    user

    08/21/2021, 2:42 AM
    1000 or 2500
  • u

    user

    08/21/2021, 2:42 AM
    go
  • u

    user

    08/21/2021, 2:42 AM
    gb
  • e

    Ethanxyz

    08/21/2021, 8:05 AM
    hey everyone i am having issues with Sveltekit + Supabase is some is able to help me. It is a login / signup issue with Magic Link. TLDR: The link is sent and upon clicking, I am redirected back to the site, however, no user is ever added to the database...
    s
    • 2
    • 6
  • s

    silentworks

    08/21/2021, 10:58 AM
    SVeltekit and Superbase login issue
  • s

    silentworks

    08/21/2021, 11:00 AM
    Please don't do this, this is a community run Discord, if you need an answer to something more urgent then use the correct communication channels. In the case of wanting information from the Supabase team please use the feedback widget in the dashboard or email beta@supabase.io
  • u

    user

    08/21/2021, 1:48 PM
    Firebase have limit of around 100 Simultaneous connections in realtime database, I couldn't find the limit of Supabase... if anybody knows?
  • u

    user

    08/21/2021, 3:33 PM
    I didn't found one either, but maybe this issue is what you're looking for (?): https://github.com/supabase/benchmarks/pull/15
  • f

    fayaz

    08/21/2021, 3:37 PM
    How do I select unqiue/distinct column values, it's not mentioned anywhere in this page. https://supabase.io/docs/reference/javascript/select
  • o

    ogsambone

    08/21/2021, 4:25 PM
    Who wants to build an onlyfans clone?
  • x

    Xyo

    08/21/2021, 5:03 PM
    That’s an imposed limit (free plan) not a technical limit.
  • x

    Xyo

    08/21/2021, 5:03 PM
    I doubt we could get an accurate estimate on Supabase due to it not being artificially capped - but I’ve had over 400 connections on the free plan, with small-moderate usage
  • x

    Xyo

    08/21/2021, 5:04 PM
    The elixir server is pretty efficient, so idle connections don’t really take up many resources.
  • d

    daman

    08/21/2021, 5:21 PM
    Hi there, I am considering Supabase for a personal project. Looking at pricing table it says "Log retention (API & Database)" for 3 months. I am going to collect realtime click tracking activity. Does it mean that Supabase does not allow to query data which is older than 3 months? Sorry for such a noob question.
  • s

    Scott P

    08/21/2021, 5:24 PM
    No. The logs you're mentioning are from the various services/tools that are used to make the Supabase platform work. Data that's in the database isn't classified as logging and there shouldn't be any time limit on how long data can be in the DB before it's not queryable.
  • d

    daman

    08/21/2021, 5:25 PM
    Awesome! Thanks for the clarification 🙂
  • d

    daman

    08/21/2021, 5:27 PM
    Is Supbase a right fit for website tracking application? Just trying to understand if it fits our needs.
    x
    l
    • 3
    • 18
  • e

    Ethanxyz

    08/21/2021, 6:31 PM
    Is there a way to Automatically add users to the
    Profiles
    table without having them have to add a name ? ( i.e., whenever the user auths with magic, a new user is created in the table with a random user name ). For reference, I am using the
    Profiles
    table that Supabase ask you to set up in this guide : https://supabase.io/docs/guides/with-svelte
  • e

    Ethanxyz

    08/21/2021, 6:34 PM
    Currently, whenever a user Auths into the app, they are added to the
    Authenticated Users
    section of my supabase app, but it isn't until a user visits
    Profiles.svelte
    ( See the svelte quick start link above for details on what this looks like ), and updates their user name does that user get added to the
    Profiles
    table. I want this to happen all at once. As soon as a user is authenticated, their data ( and maybe a random name ), is added to the
    Profiles
    table without the user needing to manually update their name. Reason ? Well its super bad UX to have the user manually set up a name in order for them to be added to the
    Profiles
    table. My users will most likely instantly start using the app, which will, at some point, require their account to be within the
    Profiles
    table.
  • x

    Xyo

    08/21/2021, 7:11 PM
    I create public profiles using a trigger
  • x

    Xyo

    08/21/2021, 7:11 PM
    When something is inserted into
    auth.users
    , you insert in your public table too (the docs should mention this as an example)
  • x

    Xyo

    08/21/2021, 7:11 PM
    And in the trigger you can potentially add logic to generate a random name
  • x

    Xyo

    08/21/2021, 7:12 PM
    I just default my users to
    Awesome User
    if they don’t use social auth, then they are free to change their name
  • x

    Xyo

    08/21/2021, 7:12 PM
    Though I do that at app level, I don’t actually set the name in the DB.
  • u

    user

    08/21/2021, 7:25 PM
    Open Source Onlyfans? 🥺
  • k

    kelbs

    08/21/2021, 7:48 PM
    I don't quite understand how to use supabase for auth. Is the intent to allow clients (e.g. react app) to query the database directly? What if I have my own backend app -- how would I authenticate a user from my own backend?
  • x

    Xyo

    08/22/2021, 12:53 AM
    Supabase Auth is meant to be used with Supabase
  • x

    Xyo

    08/22/2021, 12:53 AM
    In your case, you’d issue Supabase client tokens from your own backend
  • x

    Xyo

    08/22/2021, 12:53 AM
    So they can then call Supabase directly
  • m

    Meowcat285

    08/22/2021, 1:38 AM
    Greetings!
1...848586...392Latest