db work and flyer processing to anon table
Some checks failed
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Failing after 25s

This commit is contained in:
2025-11-12 20:09:53 -08:00
parent 4bfa4eab02
commit 8c35933ed1
2 changed files with 8 additions and 2 deletions

View File

@@ -429,9 +429,14 @@ By addressing these areas, we can transition Flyer Crawler from a powerful MVP i
# when updating the supabase schema:
# When updating the Supabase schema:
npx supabase gen types typescript --project-id azmmnxkvjryracrnmhvj --schema public | Set-Content -Path types/supabase.ts -Encoding utf8
and then restart the TS server
Run the following command to regenerate the TypeScript types for your database. The output is placed in the `_shared` directory so that Edge Functions can access it.
```bash
npx supabase gen types typescript --project-id azmmnxkvjryracrnmhvj --schema public > supabase/functions/_shared/supabase.ts
```
After running, you may need to restart your IDE's TypeScript server to pick up the changes.