Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

I'd go with Supabase.


Thanks. I have been reading through the docs for a while now but I am not sure what to make of it.

What would be the minimum number of commands I have to type into a command line (Say in a fresh Debian install) to get a simple site up and running that lets users do the basic stuff like sign up, log in, log out, change password, delete profile?


There are some guides in the docs which cover Database + Auth + Storage. They take about 10 mins to work through. (For example, with React: https://supabase.io/docs/guides/with-react)

Auth:

    const { error } = await supabase.auth.signIn({ email })
Storage:

    let { error } = await supabase.storage
        .from('avatars')
        .upload(filePath, file)




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: