https://supabase.com/ logo
Join Discord
Powered by
# help
  • g

    glundgren

    01/17/2022, 11:09 AM
    from seed.sql
  • p

    poutingemoji

    01/17/2022, 11:10 AM
    what does that mean?..
  • g

    glundgren

    01/17/2022, 11:10 AM
    ah, sorry man
  • p

    poutingemoji

    01/17/2022, 11:10 AM
    my data is gone
  • g

    glundgren

    01/17/2022, 11:10 AM
    i was biased on my own issues when i read your text hehe
  • g

    glundgren

    01/17/2022, 11:10 AM
    🙂
  • g

    glundgren

    01/17/2022, 11:10 AM
    i had a project that was paused, restored it, but the data was there
  • g

    glundgren

    01/17/2022, 11:11 AM
    sorry about that, i was trying to be helpful
  • g

    glundgren

    01/17/2022, 11:15 AM
    by the way, somebody ever really used the local dev tool?
  • g

    glundgren

    01/17/2022, 11:15 AM
    how did you made auth work locally?
  • g

    glundgren

    01/17/2022, 11:16 AM
    it's critical for me on the adoption of supabase for a lot of projects
  • s

    silentworks

    01/17/2022, 12:23 PM
    DB wiped after restoring project
  • u

    ulisses

    01/17/2022, 1:19 PM
    Hello, do you have any documentation on the function hook feature?
  • u

    ulisses

    01/17/2022, 1:25 PM
    the search feature in supabase.com is showing that there is some info... but when I click it I get
    404 Page not found
  • u

    ulisses

    01/17/2022, 1:27 PM
    looks like it is adding an extra
    docs
    to the url
  • t

    T-ZA

    01/17/2022, 1:39 PM
    Hi all, been liking my experience with using Supabase so far, it's shaping up to be a great solution for my needs! I have seem to run into an interesting If I make a new schema in Supabase with SQL (e.g. CREATE SCHEMA name) and create table(s) in it, would those tables in the new schema be visible on the Database -> Tables view of the dashboard? What should I do if they aren't?
    g
    • 2
    • 6
  • m

    Maz

    01/17/2022, 3:13 PM
    I'm using the
    createSignedUrl
    method on storage, and I'm getting a rate limit error now:
    Copy code
    {
      message: 'API rate limit exceeded',
      status: 429
    }
    Is there some billing or plan upgrade I need to make here or some config so I avoid this rate limit? I will need to perform a lot of signed urls
    s
    • 2
    • 1
  • m

    Maz

    01/17/2022, 3:16 PM
    Looks like I'm on the free plan but more than willing to upgrade if this is a limit of the free plan. Supabase rocks
  • g

    garyaustin

    01/17/2022, 3:29 PM
    schema settings
  • s

    Scott P

    01/17/2022, 4:58 PM
    It's best to keep questions to a single channel so that responses don't get spread across different channels. I've made a thread for your question here: https://discord.com/channels/839993398554656828/932676146292736090
  • b

    BenXk

    01/17/2022, 4:58 PM
    Ok thank you
  • c

    cookie mob

    01/17/2022, 5:50 PM
    I have abit of a problem fetching data from supabase (using react native). User register and login works fine, but each time I try to fetch data for my table, I can't seem to get it. I used the same code for fetching in my other project, so I the code should be fine.
  • m

    mattaye

    01/17/2022, 6:17 PM
    Hello. Could anyone tell me what is a good way / workflow to load product data from a csv into supabase table? I would need to wipe this data and reload with updated data fairly regularly? Thanks
  • t

    tourdownunder

    01/17/2022, 8:00 PM
    You can connect to your supabase postgres database using the default postgres client
    psql
    where
    temp_data.csv
    is in the same direcotry
    Copy code
    sql
    CREATE TEMP TABLE temp_data
    (
        Date             text,
        Time             text,
        Code             text,
        Product          text
    );
    
    \COPY temp_data FROM ./temp_data.csv DELIMITER ',' CSV HEADER;
    Most GUI postgres clients have a way to import / export data using csv too.
  • m

    mattaye

    01/17/2022, 8:01 PM
    great thank you
  • s

    sharpcdf

    01/17/2022, 9:36 PM
    how can i get the
    USER_TOKEN
    ?
    s
    • 2
    • 13
  • s

    sharpcdf

    01/17/2022, 9:36 PM
    from what im seeing theres no documentation on it
  • s

    sharpcdf

    01/17/2022, 9:36 PM
    its just required for getting information about users and etc.
  • s

    sharpcdf

    01/17/2022, 9:36 PM
    is it their password or something?
  • s

    silentworks

    01/17/2022, 10:49 PM
    User token
1...197198199...316Latest