092_UI_core / src /config /database.config.ts
anotherath's picture
fix ui and core
639bb77
import { registerAs } from '@nestjs/config';
export default registerAs('database', () => ({
supabaseUrl: process.env.SUPABASE_URL,
supabaseAnonKey: process.env.SUPABASE_ANON_KEY,
supabaseServiceRoleKey: process.env.SUPABASE_SERVICE_ROLE_KEY,
}));