nodeboot-starter-supabase
Installation
SKILL.md
@nodeboot/starter-supabase
Use this starter when the app should create one Supabase client from config and inject it anywhere. The starter reads integrations.supabase, chooses serviceRoleKey or anonKey, and builds the client with the configured auth/database options.
Enable
@EnableDI(Container)
@EnableSupabase()
@EnableComponentScan()
@NodeBootApplication()
export class MyApp implements NodeBootApp {
start(): Promise<void> {
return NodeBoot.run(ExpressServer);
}
}