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

    Biondi Bagasta Wiko Putra

    12/06/2021, 3:51 PM
    Is it unique attribute column was supported in Supabase??? For example i want a unique attribute for column email.....
  • p

    pedrodiaz

    12/06/2021, 5:20 PM
    Not yet, see https://github.com/supabase/postgres-meta/issues/100
  • n

    NeatFastro

    12/06/2021, 7:51 PM
    what's the "firebase cloud functions" alternative in supabase?
  • g

    garyaustin

    12/06/2021, 8:14 PM
    Besides the Postgres database functions, it is roll your own right now. See Friday's Supabase blog for status on functions more like you are referring to. At the moment I still use my firebase cloud functions but I'm still in dev mode.
  • a

    alpha_

    12/06/2021, 8:20 PM
    I like the Supabase logo font, any idea which font they used?
  • n

    NeatFastro

    12/06/2021, 8:21 PM
    hmmm, feel like it's gonna take some time, any idea how would react to stripe web hooks?
  • s

    Scott P

    12/06/2021, 9:00 PM
    There's this PoC from earlier this year: https://github.com/supabase/stripe-sync-engine In any case, you're going to have to have something hosted somewhere (e.g. a static endpoint, could be persistently available or a serverless endpoint) for the time being, and then manually handle the websocket events
  • l

    LOYAL

    12/06/2021, 9:51 PM
    Hi, does Supabase has DDoS protection? since PostgreSQL is charged by usage, I'm a little bit worried
  • b

    bloopypoo

    12/07/2021, 1:21 AM
    Is there a general pricing plan for "Optimized database instances"?
  • b

    bloopypoo

    12/07/2021, 1:22 AM
    I just see that it starts from $50, but for example the benchmarks for the realtime updates are for a 4 core machine with 16gb memory
  • b

    bloopypoo

    12/07/2021, 1:23 AM
    i think it would help if supabase was a bit clearer with the scalability aspect
  • i

    Isaiah

    12/07/2021, 1:23 AM
    I'm not really sure what font they use but you can see more here https://github.com/supabase/supabase/tree/master/www/public/fonts/custom
  • a

    anothercoder

    12/07/2021, 3:05 AM
    Maybe this will help https://egghead.io/courses/build-a-saas-product-with-next-js-supabase-and-stripe-61f2bc20
  • c

    cjog

    12/07/2021, 5:13 AM
    Can someone shed some light on the ability to choose a cloud provider or region/data center for supabase cloud deploys. Currently I only notice AWS in the US region and would like to deploy to GCP in frankfurt region with GDPR regulatory requirements. I would like to not self host supabase ideally.
    s
    • 2
    • 1
  • e

    Embm

    12/07/2021, 5:35 AM
    Looks quite similar to Lineto's Circular
  • d

    Deleted User

    12/07/2021, 5:46 AM
    Supabase login down? Seems like only for my project, others work
  • b

    Biondi Bagasta Wiko Putra

    12/07/2021, 10:27 AM
    How to use Push Notification with Supabase + Flutter????????
  • s

    satishb

    12/07/2021, 11:46 AM
    @User you can use
    PostgreSQL Functions
    and
    github.com/appleboy/gorush
    to send notifications to iOS and android. Steps: 1. Deploy your gorush container with iOS p12/p8 and android gcm/fcm keys 2. Create notifications table containing token and payload 3. Create Supabase Function that calls gorush's push api, ref: https://github.com/appleboy/gorush#post-apipush 4. Once all done you can add notification to database from any js/dart/go libraries and it will trigger reaction. OR: if you want to use simple middleware between supabase http triggers and gorush, use this below example that i had added in gist https://gist.github.com/satishbabariya/2bbb72befb3ff20b1ae1f505bee8d6fd CC: @User may be we can in distant future integrate gorush in supabase?
  • r

    Romain Petit

    12/07/2021, 11:55 AM
    Hi, Does anyone know about the launch of a multiple environments for a same project ? I saw that it is currently in the roadmap but I can't find it anywhere ...
    s
    • 2
    • 5
  • s

    silentworks

    12/07/2021, 12:02 PM
    Cloud provider
  • l

    letourpowerscombine

    12/07/2021, 4:55 PM
    Trying to build a SvelteKit app with Supabase, and getting the following error:
    Copy code
    > Using @sveltejs/adapter-cloudflare
    Error [ERR_MODULE_NOT_FOUND]: Cannot find module '/Users/sam/just-start/node_modules/@supabase/supabase-js/src/lib/helpers' imported from /Users/sam/just-start/.svelte-kit/output/server/chunks/index-40b3642e.js
        at new NodeError (node:internal/errors:363:5)
        at finalizeResolution (node:internal/modules/esm/resolve:307:11)
        at moduleResolve (node:internal/modules/esm/resolve:742:10)
        at Loader.defaultResolve [as _resolve] (node:internal/modules/esm/resolve:853:11)
        at Loader.resolve (node:internal/modules/esm/loader:89:40)
        at Loader.getModuleJob (node:internal/modules/esm/loader:242:28)
        at ModuleWrap.<anonymous> (node:internal/modules/esm/module_job:73:40)
        at link (node:internal/modules/esm/module_job:72:36)
    > 500 /
    Error: 500 /
        at file:///Users/sam/just-start/node_modules/@sveltejs/kit/dist/chunks/index4.js:86:11
        at visit (file:///Users/sam/just-start/node_modules/@sveltejs/kit/dist/chunks/index4.js:222:5)
        at async prerender (file:///Users/sam/just-start/node_modules/@sveltejs/kit/dist/chunks/index4.js:303:6)
        at async Object.prerender (file:///Users/sam/just-start/node_modules/@sveltejs/kit/dist/chunks/index4.js:368:4)
        at async adapt (file:///Users/sam/just-start/node_modules/@sveltejs/adapter-cloudflare/index.js:27:4)
        at async adapt (file:///Users/sam/just-start/node_modules/@sveltejs/kit/dist/chunks/index4.js:393:2)
        at async file:///Users/sam/just-start/node_modules/@sveltejs/kit/dist/cli.js:896:5
    This happened after porting some supabase functions from svelte files into dedicate endpoints (e.g.
    function.js
    ). All of the functionality works as expected, it's just failing to build properly locally (with
    npm run build
    ). Here is the repo: https://github.com/sbutler-gh/just-start/tree/cloudflare Can anybody spot the issue?
    s
    • 2
    • 4
  • j

    jonny

    12/07/2021, 9:38 PM
    For anyone making new projects. AWS is having intermittent issues with us-east-1 currently. This is our default region for new projects. For those wanting to create new projects and not wanting to wait, I would recommend picking another region for now.
  • b

    Biondi Bagasta Wiko Putra

    12/08/2021, 3:21 AM
    hopefully u can make the video tutorial for us, i was kinda confused with this.....
  • t

    tirmes

    12/08/2021, 5:38 AM
    Hey, just wondering if it's possible to access (for example) Google API through Supabase.
    s
    • 2
    • 5
  • j

    jumpship

    12/08/2021, 10:59 AM
    Curious if most people use Prisma with Supabase. I’m not currently, and it’s been just fine. But wondering if I’m missing out, or if this is a decision I’ll regret as my site grows
    s
    • 2
    • 2
  • j

    jumpship

    12/08/2021, 11:06 AM
    ^ everyone in JavaScript land I mean!
  • j

    JW

    12/08/2021, 11:09 AM
    Anyone here who has experience in building platforms for trading financial products? pls dm
  • y

    YokoWasis

    12/08/2021, 1:49 PM
    Is there anything that I need to set if I am hosting my own supabase to handle a lot of incoming connection? Let's say about 1 million connections to database.
    s
    • 2
    • 1
  • g

    Gitanes

    12/08/2021, 2:42 PM
    hello i created a new table with type uuid instead of int8 for id field. when i insert data in the table, it says
    Error: null value in column "id" of relation "sessions" violates not-null constraint
    . should i provide a uuid myself? i try to revert to int8 to benefit from auto increment, but it's stuck with uuid
    s
    l
    • 3
    • 2
  • s

    silentworks

    12/08/2021, 3:18 PM
    Using UUID with autogenerated uuids
1...156157158...392Latest