Inferencer
I have a supabase database with about 15 tables. Can refine help me auto create CRUD pages? The only example I have seen is the default Post samples but I have not seen any example/tutorial that creates CRUD pages from custom tables.
refine create-resource command to automatically generate CRUD pages for your resources. For example:pages with the name of your table, and populate it with files for list, create, edit, and show operations Adding CRUD Actions and Authentication (https://refine.dev/blog/refine-pixels-3/).<Refine> component in your App.tsx file Adding CRUD Actions and Authentication (https://refine.dev/blog/refine-pixels-3/).refine create-resource npm run refine create-resource your-table-name import { MantineInferencer } from "@refinedev/inferencer/mantine";
<Route
index
element={<MantineInferencer />}
/>