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

    Vidski

    05/03/2022, 7:52 PM
    https://supabase.com/docs/guides/hosting/docker
  • s

    Scott P

    05/03/2022, 7:52 PM
    Did you even check the repo? https://github.com/supabase/supabase/tree/master/docker
  • i

    Isaí

    05/03/2022, 9:52 PM
    Hello, how are you? I'm new to supabase, I would like to know if the put method can be used to update a column, I am currently creating an android application and I am using an http fuel library, but apparently it is not compatible with the patch method and it causes me problems and when using put I get the following error: { "message": "Payload values do not match URL in primary key column(s)" }
    g
    • 2
    • 9
  • g

    garyaustin

    05/03/2022, 10:15 PM
    put for update
  • n

    NARCISO

    05/04/2022, 8:36 AM
    Hello everyone, Does someone knows the when Function Hooks will be released also in Supabase Studio and support Edge Functions? I would love to use that feature to have Database Triggers that calls Edge Functions!
    j
    • 2
    • 3
  • r

    renderlux

    05/04/2022, 9:04 AM
    Yep sorry I did search - sorry
  • l

    logemann

    05/04/2022, 12:26 PM
    Seems to me that as soon as i disable "Enable email confirmations" i am losing the function that you need to confirm before logging in. So the basic question is, how to leave that feature in but sending a customized email
  • j

    jonny

    05/05/2022, 5:46 AM
    async triggers (function hooks) for edge functions
  • j

    jokerface

    05/05/2022, 7:12 AM
    Hi, Is there a list which shows what features exclusive are to Supabase Cloud and not part of Supabase itself?
  • t

    Tobias Kietzmann

    05/05/2022, 8:36 AM
    i can not find anything in the terms, is it legal to use supabase for an 18+ project like onlyfans/pornhub?
  • t

    Tobias Kietzmann

    05/05/2022, 8:36 AM
    would be terrible to migrate to another solution in production mode
  • s

    STILLWATER;

    05/06/2022, 12:32 PM
    what is supabase's postgres version?
  • c

    chipilov

    05/06/2022, 12:58 PM
    new projects use 14.1
  • c

    chipilov

    05/06/2022, 12:58 PM
    if you have an existing project you can check it with
    Copy code
    SELECT VERSION();
  • b

    BsKr1

    05/06/2022, 3:03 PM
    Hi everyone! wondering why I can't see the export to csv button anymore.
  • b

    BsKr1

    05/06/2022, 3:07 PM
    forget it! ..
  • b

    BsKr1

    05/06/2022, 3:07 PM
    dumb question
  • l

    Lars

    05/06/2022, 6:12 PM
    Honestly, I feel a stupid having paid for a project on Supabase. Two days ago I opened a support ticket saying that my access to the database was down several times a day for 15-60 minutes. But today, 10 hours ago I lost access to the DB again - and it is still not up!? I get 502, 522 and 524 with no error message after looong waiting times. Both in my own applications and on Supabase's own dashboard for the project, which will not load at all when these problems occur. I feel stupid for having spent money on it already. And I feel stupid for having spent time on a project coded for a nonfunctioning service.
  • g

    garyaustin

    05/06/2022, 6:26 PM
    That would be very frustrating. I have not seen any general reports of outages in any of the forums today, SB system status page shows up and my two instances are running fine. It is likely something to do with your particular instance or the code you are running. Reaching out to support is your best option as most here on Discord will have no ability to help you directly unless you have some sort of code issue.
  • d

    Derek

    05/06/2022, 11:19 PM
    Is anyone using an ORM like sqlalchemy with python notebooks to create and migrate tables on supabase? Curious if anyone is using a similar approach
  • j

    jokerface

    05/07/2022, 2:58 AM
    There is Supabase, Firebase and much more but honestly spin up a WordPress REST API server and it can be your backend for 90% of projects
  • b

    benten

    05/07/2022, 2:58 AM
    This is a super quick question, didn't want to clutter up the question thread: Is is possible to query 2 tables at once? Or do I need to make two supabase.from().select() calls?
    g
    • 2
    • 3
  • g

    garyaustin

    05/07/2022, 3:33 AM
    2 tables query
  • h

    Hal

    05/07/2022, 10:09 AM
    How can I get the user's access token on the server? Or, how can I set file's owner when uploading files to storage in server?
  • l

    lumen

    05/07/2022, 2:30 PM
    Hey guys, I'm new to Supabase. I have a question. I'd like to use Prisma to create my schema, and manage my database. But I'd also like to use Supabase auth, because it seems easy to implement. Would it be difficult to use both at the same time, or are they mutually exclusive, because Supabase does some sort of behind-the-scenes magic to implement auth, and then making it all work with Prisma would be difficult and confusing?
  • l

    lumen

    05/07/2022, 2:32 PM
    _ _ Basically I'm worried that I'll commit to using supabase auth now, but then run into some limitations I'm not aware of (since I'm new), and will have to go through the pain of migrating everything to my own API with Prisma.
  • a

    Ahmad Swultra

    05/08/2022, 10:12 AM
    Copy code
    begin
      insert into public.profiles (id,first_name,last_name)
      values (new.id,new.raw_user_meta_data->> 'first_name',new.raw_user_meta_data->> 'last_name');
      return new;
    end;
    i have this function work when a new row added in users table It is creating a new row in the profiles table, and i want to make this function to check if the `raw_user_meta_data `have only `first_name `and
    last_name
    And they are not null and if the user pass other data in
    raw_user_meta_data
    , the signup action will fail
  • u

    Unknown Member

    05/08/2022, 4:50 PM
    Hey guys, is there a way to sign up for Supabase aside from GitHub?
  • u

    Unknown Member

    05/08/2022, 4:52 PM
    Actually nvm, I'll just crate a new github account. Problem solved. 😄
  • n

    NARCISO

    05/09/2022, 7:50 AM
    Hi @thorwebdev , Don't want to be rude here, but is someone still working on the supabase-community repos? I'm currently blocked on my whole project by a breaking bug in the
    supabase-auth-helpers
    repo. There is already a PR opened (#82) and it's been 16 days without a Staff update. Can you please take care of it? It would be highly appreciated by a lot of users!
    t
    • 2
    • 5
1...219220221...392Latest