You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 3, 2023. It is now read-only.
Integrate with the Supabase backend to fetch a list of all podcasts with all of their meta information and the URL to the audio file. For now, just dump it as JSON somewhere.
Acceptance criteria:
Every podcast from Supabase is fetched along with all of its meta information (we'll filter it out later)
No private tokens are leaked in the client build
Fetching works on both the main deployment and the preview deployments (on subdomains of cast-iu.pages.dev)
The data is fetched in the format of proposed TS interfaces
Interfaces:
interfacePodcast{id: number;title: string;author: string;coverUrl: string;episodes: Episode[];}interfaceEpisode{id: number;title: string;duration: number;audioUrl: string;favorite?: boolean;// omit this field for now}
The text was updated successfully, but these errors were encountered:
Integrate with the Supabase backend to fetch a list of all podcasts with all of their meta information and the URL to the audio file. For now, just dump it as JSON somewhere.
Acceptance criteria:
cast-iu.pages.dev
)Interfaces:
The text was updated successfully, but these errors were encountered: