Jonathan
Jonathan
Explore posts from servers
RRefine
Created by fair-rose on 10/26/2024 in #ask-any-question
Getting this whenever running npm run dev
Running to setup a new project with
npm create refine-app@latest
npm create refine-app@latest
Doing vite and rest api.
12 replies
RRefine
Created by optimistic-gold on 10/26/2024 in #ask-any-question
Getting this whenever running npm run dev
I am getting the same thing also
12 replies
DDeno
Created by Jonathan on 10/16/2024 in #help
Setting up Deno 2.0 with Fresh and TypeORM
😦
4 replies
DDeno
Created by Jonathan on 10/16/2024 in #help
Setting up Deno 2.0 with Fresh and TypeORM
It looks like Deno doesn't work with SQL Azure https://github.com/denoland/deno/issues/20594
4 replies
DDeno
Created by Jonathan on 10/16/2024 in #help
Setting up Deno 2.0 with Fresh and TypeORM
I updated my data.ts to
import { DataSource } from "npm:typeorm";
import { User } from "../entity/user.model.ts";
import * as mssql from "npm:mssql";
import * as reflectMetadata from "npm:reflect-metadata";
const dataSource = new DataSource({
type: "mssql",
url: Deno.env.get("DATABASE_URL"),
entities: [User],
synchronize: false
});

export default dataSource;
import { DataSource } from "npm:typeorm";
import { User } from "../entity/user.model.ts";
import * as mssql from "npm:mssql";
import * as reflectMetadata from "npm:reflect-metadata";
const dataSource = new DataSource({
type: "mssql",
url: Deno.env.get("DATABASE_URL"),
entities: [User],
synchronize: false
});

export default dataSource;
And now I am getting "No metadata for User was found" yet it is specified
4 replies
RRefine
Created by flat-fuchsia on 9/4/2024 in #general
I have been trying to ask the ai/support
Thanks I will see what I can do on that, it may just be easier to have custom data providers
14 replies
RRefine
Created by other-emerald on 9/4/2024 in #general
I have been trying to ask the ai/support
I am looking at what it would take to do the transformError like you have above into something that works for supabase/postgres, I think how to transform it to an individual field
14 replies
RRefine
Created by vicious-gold on 9/4/2024 in #general
I have been trying to ask the ai/support
yeah I am also looking at getting a lot of the same structure in expo, so I feel like keeping it consistent
14 replies
RRefine
Created by correct-apricot on 9/4/2024 in #general
I have been trying to ask the ai/support
and I am trying to rely on so much of check constraints and such in postgres to provide the server validation but getting it to display nicely on the forms with the default supabase data provider is a little harder
14 replies
RRefine
Created by afraid-scarlet on 9/4/2024 in #general
I have been trying to ask the ai/support
We have a large crud crm app, that has probably 200 different resources, I found vite to be much faster than next for that. Hopefully that is the right decision in the long run
14 replies
RRefine
Created by manual-pink on 9/4/2024 in #general
I have been trying to ask the ai/support
well your docs and ai tools are outstanding
14 replies
RRefine
Created by sunny-green on 9/4/2024 in #general
I have been trying to ask the ai/support
right now I am using a react-vite approach, instead of next, really because I wanted the save warning feature when a user tries to navigate away
14 replies
RRefine
Created by inland-turquoise on 9/4/2024 in #general
I have been trying to ask the ai/support
had no idea about this swizzle feature lol
14 replies
RRefine
Created by wise-white on 9/4/2024 in #general
I have been trying to ask the ai/support
Thanks, I was looking at a way to override the handleError in the supabase data provider so I didn't have to create so many dataproviders
14 replies
RRefine
Created by plain-purple on 8/6/2024 in #ask-any-question
Better Error notifications on Supabase Provider
@kapa.ai with the supabase provider, is there a to handle it better
16 replies
RRefine
Created by xenial-black on 8/6/2024 in #ask-any-question
Better Error notifications on Supabase Provider
@kapa.ai I managed to get this to work but is there a way to just have it show the error on the form, not the notification message
16 replies
RRefine
Created by yelping-magenta on 9/4/2024 in #ask-any-question
Closing modal after save, gives warning that you are leaving the page.
also why on this form would there be a delay on entering data in the name field
6 replies
RRefine
Created by yammering-amber on 8/11/2024 in #ask-any-question
Enabling Sorting on Antd Table
@kapa.ai how would you add filter to the antd columns
13 replies