Skip to content

Comment on Ask HN: How do you handle user-generated content in your apps?parent

Comments

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)
AboutSource Built by g1lg1l

Hackerly is an independent reader for Hacker News, built on the public HN API. Not affiliated with Y Combinator.