You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found supabase a couple months ago and was disappointed that there was no Java client so I created my own. It has basic database and storage features implemented.
It's very simple to use:
// Starting the client
SupabaseRestClient supabase = new SupabaseRestClient(YOUR_SUPABASE_URL, YOUR_SUPABASE_KEY);
// Inserting a new user to the table users
supabase.databse().insert("users", Insert.row().column("email", "[email protected]")
.column("username", "user123"));
// Using storage (uploading a file)
supabase.storage().upload("mybucket/test.txt", new byte[]{1,2,3,4,5});
Feel free to fork it. I can change the license if it makes anything easier.
Hello,
I found supabase a couple months ago and was disappointed that there was no Java client so I created my own. It has basic database and storage features implemented.
It's very simple to use:
Feel free to fork it. I can change the license if it makes anything easier.
https://github.com/Harium/supabase-java
The text was updated successfully, but these errors were encountered: