Replies: 2 comments
-
Hey @pipech thanks for sharing! It looks great. I think creating an example would be great way to show code and demo it. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi @BatuhanW, A example app would be a base refine apps with few line added. // App.tsx
import { Refine } from "@refinedev/core";
import {
accessControlProvider,
authProvider,
dataProvider,
type ClientParams,
} from "refine-frappe-provider";
const providerConfig = {
url: 'https://frappe-server-url.com',
} satisfies ClientParams;
const App = () => (
<Refine
/* ... */
accessControlProvider={
accessControlProvider(providerConfig)
}
authProvider={
authProvider(providerConfig)
}
dataProvider={
dataProvider(providerConfig)
}
/>
); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello everyone,
I just develop a new provider for the Frappe Framework and wanted to share it with you all!
For those who might not be familiar, the Frappe Framework is this awesome open-source Low Code Framework that's behind ERPNext. Super cool for building apps quickly.
Here's where you can check it out and dive into the code: refine-frappe-provider on GitHub.
Would love to hear your thoughts or suggestions for enhancements.
Beta Was this translation helpful? Give feedback.
All reactions