io.github.manriif.supabase-functions
Owner: Maanrifa Bacar Ali
The plugin helps in building Supabase Edge Functions using Kotlin as primary programming language. It offers support for multi-module project and Javascript sources. Additionnaly, it provides gradle tasks for serving, inspecting and testing your functions locally and later deploying them to a remote project.
https://github.com/manriif/supabase-edge-functions-kt
Sources: https://github.com/manriif/supabase-edge-functions-kt
Version 0.0.6 (latest)
0.0.6
Created 25 October 2024.
The plugin helps in building Supabase Edge Functions using Kotlin as primary programming language.
It offers support for multi-module project and Javascript sources.
Additionnaly, it provides gradle tasks for serving, inspecting and testing your functions locally and later deploying them to a remote project.
Using the plugins DSL:
plugins {
id("io.github.manriif.supabase-functions") version "0.0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.manriif.supabase-functions:gradle-plugin:0.0.6")
}
}
apply(plugin = "io.github.manriif.supabase-functions")
Using the plugins DSL:
plugins {
id "io.github.manriif.supabase-functions" version "0.0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.manriif.supabase-functions:gradle-plugin:0.0.6"
}
}
apply plugin: "io.github.manriif.supabase-functions"