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

    silentworks

    02/07/2023, 2:56 PM
    I've been writing Svelte code since like forever and SvelteKit since its announcement and I must say that it feels like light years ahead of NextJS. I find the simpliest tasks to be so complicated with NextJS. I know they are improving a lot of this with the
    app
    directory, but right now its a pain. I can't wait for the
    app
    directory setup to be fully ready.
  • m

    madjar

    02/07/2023, 3:14 PM
    right yeah
  • a

    ash-

    02/07/2023, 6:02 PM
    Is there any Supabase merch available to buy?
  • y

    yayza_

    02/07/2023, 6:34 PM
    great supabase updates
  • n

    n10000k

    02/07/2023, 6:53 PM
    I heard Supabase is moving from AWS to Fly.io is that true?
  • g

    garyaustin

    02/07/2023, 6:57 PM
    This is their store page. A few things, many are only available as prizes (unless you are crazy rich 😎 ) https://store.supabase.com/
  • e

    emre_

    02/07/2023, 8:45 PM
    Hi people I know this is not the exact place but I am trying to reach everywhere I can. Turkey 🇹🇷 is fighting with one of the biggest natural earthquake disasters in its history at the moment. Thousands of died so far, tens of thousands became homeless overnight. **It's cold winter and people need your help. **Please consider any donation. Even 1$ can make a huge difference. If you can't help, at least share it in your social channels. *How can you help: * 1. https://en.afad.gov.tr/earthquake-donation-accounts -> Ministry of disaster and emergency office 2. https://ahbap.org/disasters-turkey -> Turkish foundation for helping in need The kids in Turkey need your help. Sorry for out of the context message. Best!
  • m

    madjar

    02/07/2023, 10:10 PM
    is this some new way to launder money or what, i dont get it : D
  • m

    madjar

    02/07/2023, 10:10 PM
    people actually bought those 100k shirts?
  • g

    garyaustin

    02/07/2023, 10:12 PM
    I said many are geared to be/have been prizes, not serious things. Like the supabrew was never a real thing, but an April fools joke a ways back. I can't answer to why SB does that. I'm not even sure there is a direct link to that page... I have seen it before and googled
    supabase store
    to find it.
  • m

    madjar

    02/07/2023, 10:44 PM
    hahhhahahahaha its funny tho, i like it
  • e

    eshnil

    02/08/2023, 1:01 AM
    I've got a tricky situation. I am using Supabase auth for a dashboard where the user can create multiple apikeys with different access. I have put an RLS policy so that each user can see and modify only their own API keys, but how do I enforce policies when apikeys are used to read/write to other tables? Is there a way for me to request and get a JWT that does not require username/password but has this apikey value as a claim?
  • e

    eshnil

    02/08/2023, 1:03 AM
    I can probably do this by routing everything via a server where a service role is used. Is there no way for me to use existing supabase libraries in this way?
  • g

    garyaustin

    02/08/2023, 1:11 AM
    You really should ask in #1006358244786196510. You can use any valid jwt signed in a database function or your server with the clients, you just set the authorization header. You can even have two clients if you set persistSession:false. But please ask a new in the appropriate forum if that is not enough to get you going.
  • k

    kadurban

    02/08/2023, 8:58 AM
    Hello. Could someone tell where can I find reply from support? I asked a question regarding one issue I have and received email like "Thanks for reaching out to us. We have received your support request and your ticket id is ..." And now I received email with words "We haven't heard from you since our last message. Were you able to resolve the issue ? " But I didn't saw any reply regarding my ticket. Not in my email box and not on supabase UI.
  • o

    Olyno

    02/08/2023, 9:07 AM
    Isn't it the email below the one you hover on your screenshot?
  • k

    kadurban

    02/08/2023, 9:09 AM
    It contain only this
  • k

    kadurban

    02/08/2023, 9:28 AM
    Oh sorry I read your message wrong. Email below highlighted one is just containing following
  • k

    kadurban

    02/08/2023, 9:29 AM
    It is just like "We have your request. Wait for response"
  • k

    kadurban

    02/08/2023, 10:22 AM
    Could you please suggest someone who I can address my problem?
  • s

    silentworks

    02/08/2023, 10:45 AM
    You can reply to the support email with what you've said here.
  • v

    Vinzent

    02/08/2023, 4:03 PM
    Maybe Dart in edge functions is possible in the future https://twitter.com/invertaseio/status/1622990850203451393
  • s

    Sarunas

    02/08/2023, 8:07 PM
    Hello, I was thinking to post in questions, but I am so lost, that I dont even know.. Can anyone shine some light. I have a project I want to create, which would use React in the front end, now traditionally, I would have used NodeJs and Express, some packages I want to use are built for node. If I would use supabase, I dont need backend anymore essentially, but I somehow need to use my node things too. Also I have in plans to make API where others could call into, which would trigger some functions to run. My question mainly is : Can supabase do that ? Is it common to use supabase in the frontend with react for almost everything and separately run nodejs backend which would run some special endpoints ?
  • m

    madjar

    02/08/2023, 11:11 PM
    you can bring in additional services in the supabase docker compose stack
  • m

    madjar

    02/08/2023, 11:11 PM
    if you self host it
  • n

    nateland

    02/09/2023, 4:41 AM
    Hey guys! I'm building a NextJS app with mostly front end code. Anyone have any tips or tools for me to smartly crop the images? Most solutions tell me to use Cloudinary, but I'm not sure how to use it to crop images and then pass those images into Replicate. Any tips welcomed pls!! Hittin my head against the wall on this 😭
  • o

    Olyno

    02/09/2023, 11:44 AM
    Supabase is not existing to replace your Node server with it, but adding it to your existing solution. You could use it on the front end only if you prefer, and so not having any Node server
  • o

    Olyno

    02/09/2023, 11:44 AM
    You can do it using the sharp package
  • s

    Sarunas

    02/09/2023, 11:46 AM
    So I could use supabase on the nodejs back end and use its AUTH services and DB services, inside my custom nodejs backend ?
  • o

    Olyno

    02/09/2023, 11:48 AM
    If your Node server is a express based server, you can use Supabase inside of your routes, yes
1...347348349...392Latest