데모 · 목데이터입니다
프로젝트 레벨 · Supabase Edge Functions · Opseer Demo 배포된 Edge Function을 버전·상태와 함께 나열하고, 선택하면 소스를 보여줍니다. 데모에서는 새 함수 버튼이 비활성화되며 배포는 Supabase Dashboard에서 합니다.
전체 함수: 5활성: 4
Edge Functions
collect-daily-statsActive
https://demo.supabase.co/functions/v1/collect-daily-stats
import { serve } from 'https://deno.land/std/http/server.ts'

serve(async (req) => {
  // collect-daily-stats
  const { method } = req
  if (method !== 'POST') {
    return new Response('Method Not Allowed', { status: 405 })
  }

  const payload = await req.json()
  // … handle collect-daily-stats …

  return new Response(JSON.stringify({ ok: true }), {
    headers: { 'Content-Type': 'application/json' },
  })
})