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

    silentworks

    10/21/2021, 11:35 AM
    Keeping database in sync
  • s

    silentworks

    10/21/2021, 2:24 PM
    In case you missed it, come join us on Twitter Spaces and hear the Supabase team talk about building apps with Supabase https://twitter.com/AntWilson/status/1451187549314060293
  • g

    garyaustin

    10/21/2021, 2:28 PM
    Research Postgres textsearch with a ts_vector generated column as one way. There are many examples.
  • g

    Gamalliel_Sharon

    10/22/2021, 6:41 AM
    Hi guys, do you have any references to use supabase with graphql?
  • h

    HarryET

    10/22/2021, 7:51 AM
    Like with a graphql client? Or make a graphql server with supabase as the database?
  • g

    Gamalliel_Sharon

    10/22/2021, 7:52 AM
    Make a graphql server with supabase as the database
  • h

    HarryET

    10/22/2021, 7:54 AM
    Well you would need to find an sdk for your language and then use the service role as the key and boom you can juse use it as a database!
  • g

    Gamalliel_Sharon

    10/22/2021, 7:57 AM
    Do you have any resources or examples?
  • h

    HarryET

    10/22/2021, 7:59 AM
    The docs? But no examples that I know of
  • g

    Gamalliel_Sharon

    10/22/2021, 8:01 AM
    All right, I'm gonna search for it. Thank you for your answer ๐Ÿ‘
  • s

    sockenguy

    10/22/2021, 11:04 AM
    Hi
  • s

    sockenguy

    10/22/2021, 11:05 AM
    I got a question, I really enjoy supabase for local development currently, but for small commercial projects, it seems to be expensive with a minimum price of 25 dollars? Am I missing something here?
    s
    h
    • 3
    • 11
  • s

    silentworks

    10/22/2021, 12:03 PM
    Supabase pricing
  • s

    silentworks

    10/22/2021, 12:03 PM
    Supabase pricing model
  • b

    Biondi Bagasta Wiko Putra

    10/22/2021, 2:43 PM
    #ASK Anyone is using Supabase with flutter in here???? I got a problem. Why i can only fetching one image and the others was getting an error because it was getting an extra String in the behind like this :
    Copy code
    "HTTP request failed, statusCode: 400, https://ojiuxsweoqbgmknpdrnw.supabase.co/storage/v1/object/public/bookimage/fxnTgRmbvA.png%0D%0A"
    As u can see i got
    Copy code
    %0D%0A
    extra string in the behind. IDK why this was happened. When i fetching with browser without this extra string, it was working. My code : Fetching image :
    Copy code
    dart
      String? getImageUrl(String data) {
        var res = this._supabase.storage.from('bookimage').getPublicUrl(data);
        print(res.data);
        return res.data;
      }
    Widget Image :
    Copy code
    dart
    CircleAvatar(
        radius: 50,
        child: Image.network(this.controller.getImageUrl(this.controller.bookList[index]['image']) ?? ''),
    )
    s
    • 2
    • 2
  • b

    Biondi Bagasta Wiko Putra

    10/22/2021, 2:43 PM
    As u can see in this image two, the response from publicURL wasn't getting any new extra String......
  • b

    Biondi Bagasta Wiko Putra

    10/22/2021, 3:38 PM
    I think i got this error because of cache. I usually using
    Copy code
    cacheControl: '3600',
    when uploading the image and in my IONIC project, it was working perfectly. IDK why in flutter it was throwing an error......
  • s

    silentworks

    10/22/2021, 4:10 PM
    Supabase and Flutter
  • n

    nw_matt

    10/22/2021, 4:50 PM
    Hey all โ€“ย I'm looking to authenticate an app/cli via Supabase by using the user's already existing browser session, I've seen best practices are to setup a localhost & redirect the auth there from the browser. Wondering if I should be generating aย new/separate session for the app (not sure the easiest way to do this one) or share it between browser & app (ie, in browser: auth.session() -> pass that data back to the app via the redirect to localhost...)?
  • n

    nw_matt

    10/22/2021, 5:14 PM
    maybe as simple as auth.signIn({refreshToken: ...}, {redirectTo: "localhost:3000/credentials/"}) from the existing browser session?
  • b

    bdougie

    10/22/2021, 11:35 PM
    hi. I am trying to build a public api for my supabase data and exploring options. I am currently using a fastify + supabase-js solution, but thinking that there may be something easier, perhaps with postgREST. has anyone seen content on that?
  • g

    garyaustin

    10/23/2021, 12:32 AM
    I'm sure that Supabase is using postgREST (or maybe a slightly modified version) for the API. Supabase-js just calls the postgREST API with postgrest-js. You can too.
  • b

    bdougie

    10/23/2021, 4:26 AM
    Yeah I am leaning towards doing that with Postgres url as a little exploration.
  • y

    ymahmo

    10/23/2021, 11:26 AM
    Hi, how long do DB backups usually take? Mine have been running for almost 24 hours in "Backup in Progress...."
  • s

    Sophic

    10/23/2021, 8:16 PM
    Anyone using railway with supabase? I get good response times to both of them individually (100-200ms) but it seems like when the application on railway is communicating with supabase its almost a second
  • s

    Scott P

    10/24/2021, 3:00 AM
    I tried it a few months ago and experienced very similar performance issues (https://discord.com/channels/839993398554656828/875758805223354429/876130619120304238) I'm not sure if the situation has changed, but they had one data-centre, hosted somewhere in the US. There was a lot of routing between the US and UK (where I'm located), which meant that there was a lot of roundtrip latency being introduced. In the end, I just went back to using DigitalOcean (and around the same time, decided to setup self-hosted Supabase also on DigitalOcean). This brought my query times back down to around 100-200ms, with around 80-90% of that time being the time the database spent running the query.
  • s

    Sophic

    10/24/2021, 3:20 AM
    Thank you. Glad to know I'm not doing something wrong. Bummer as I really enjoy each service on their own
  • s

    sockenguy

    10/24/2021, 10:36 AM
    The free database plan only pauses after 1 week, if I don't save, update or delete data from that database, am I correct?
  • n

    Nine

    10/24/2021, 12:49 PM
    A small note for the @User, it would be good if you guys add this to the docs that providers like for example GitHub might need some permissions enabled so that the loging/registering works ๐Ÿ™‚ will definitely benefit many
  • h

    HarryET

    10/24/2021, 4:30 PM
    Is there any way to view a realtime postgrest log? I can't figure out why my inserts - with triggers - are failing
1...121122123...392Latest