Skip to content

Latest commit

 

History

History
59 lines (37 loc) · 1.5 KB

README.md

File metadata and controls

59 lines (37 loc) · 1.5 KB

Supabase-kt Functions

Extends Supabase-kt with a multiplatform Functions client.

Supported targets:

Target JVM Android JS iOS tvOS watchOS macOS Windows Linux
In-depth Kotlin targets

iOS: iosArm64, iosSimulatorArm64, iosX64

JS: Browser, NodeJS

tvOS: tvosArm64, tvosX64, tvosSimulatorArm64

watchOS: watchosArm64, watchosX64, watchosSimulatorArm64

MacOS: macosX64, macosArm64

Windows: mingwX64

Linux: linuxX64

Installation

Newest version:

dependencies {
    implementation("io.github.jan-tennert.supabase:functions-kt:VERSION")
}

Install the plugin in your SupabaseClient. See the documentation for more information

val client = createSupabaseClient(
    supabaseUrl = "https://id.supabase.co",
    supabaseKey = "apikey"
) {
    
    //...
    
    install(Functions) {
        // settings
    }
    
}

Usage

See Functions documentation for usage