itsyoboieltr
itsyoboieltr
Explore posts from servers
TtRPC
Created by itsyoboieltr on 7/9/2024 in #❓-help
Cron job with tRPC
10 replies
TtRPC
Created by itsyoboieltr on 7/9/2024 in #❓-help
Cron job with tRPC
In addition, nowadays instrumentation.ts is also stable in Next.js. Probably this could also be used for scheduling something, but I have not explored this extensively.
10 replies
TtRPC
Created by itsyoboieltr on 7/9/2024 in #❓-help
Cron job with tRPC
It's not the best approach, because I needed to create a "service account" to login before making the request, so that I can call the procedure from outside of the app. As the github runner is on a different machine. I still wish trpc supported cron jobs to make it easier!
10 replies
TtRPC
Created by itsyoboieltr on 7/9/2024 in #❓-help
Cron job with tRPC
I used a github action to manually call my trpc procedure.
10 replies
DTDrizzle Team
Created by itsyoboieltr on 11/3/2024 in #help
Does eslint-plugin-drizzle work with the new eslint.config.js and eslint 9?
I got it working like this:
import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';
import { FlatCompat } from '@eslint/eslintrc';

const compat = new FlatCompat({ baseDirectory: import.meta.dirname });

export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.strictTypeChecked,
...tseslint.configs.stylisticTypeChecked,
...compat.extends('plugin:drizzle/recommended'),
{
languageOptions: {
parserOptions: {
projectService: true,
tsconfigRootDir: import.meta.dirname,
},
},
}
);
import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';
import { FlatCompat } from '@eslint/eslintrc';

const compat = new FlatCompat({ baseDirectory: import.meta.dirname });

export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.strictTypeChecked,
...tseslint.configs.stylisticTypeChecked,
...compat.extends('plugin:drizzle/recommended'),
{
languageOptions: {
parserOptions: {
projectService: true,
tsconfigRootDir: import.meta.dirname,
},
},
}
);
2 replies
Aarktype
Created by itsyoboieltr on 9/8/2024 in #questions
Creating default object from type definition
thanks for taking your time to answer and provide detailed answers!
23 replies
Aarktype
Created by itsyoboieltr on 9/8/2024 in #questions
Creating default object from type definition
and we'll see
23 replies
Aarktype
Created by itsyoboieltr on 9/8/2024 in #questions
Creating default object from type definition
but I guess this would also be useful for others, so I'll make an issue about it
23 replies
Aarktype
Created by itsyoboieltr on 9/8/2024 in #questions
Creating default object from type definition
true
23 replies
Aarktype
Created by itsyoboieltr on 9/8/2024 in #questions
Creating default object from type definition
Maybe a better description instead of default would be something like: "simplest representation"
23 replies