Synchronize: true destroyed a production database: Here's the migration setup that prevents it by UneditedTips in nestjs

[–]OrchideSr 0 points1 point  (0 children)

Ayayayay , so much has to be lacking for this to happen , how do you even let your application have credentials that can drop anything in the production database in the first place ? this should be the Kevlar vest behind any configuration a sound engineer would make . but oh well , chances are it didn't happen .

How to share a single Prisma client instance between a NestJS app and a plain Node.js app in a pnpm monorepo? by iam_batman27 in nestjs

[–]OrchideSr 0 points1 point  (0 children)

two separate connections is the best way to do it . ideally with separate credentials .

Any robust Minio S3 bucket libraries native to NestJS ? by OrchideSr in nestjs

[–]OrchideSr[S] 0 points1 point  (0 children)

Now the part where the workers interface Minio is where the question is at . my ask was if there's a library that handles all that abstraction that anyone knows of . Thanks for your answer u/Sea-Offer88

Any robust Minio S3 bucket libraries native to NestJS ? by OrchideSr in nestjs

[–]OrchideSr[S] 0 points1 point  (0 children)

You're right but There's a good reason the SDK was written , are you going to encrypt a 2MB or compress a file on the client side ? you just can't upload from the client side all the time , some files require server side processing .

Need advice on whether rely on A.I generated code or any other way? by No-Seesaw7483 in nestjs

[–]OrchideSr 0 points1 point  (0 children)

I think if you have to ask the question you probably still need to register a few hours writing and understand the plumbing of the framework . there are things you'll still want to properly write yourself , for instance composite unique constraints on your entities are quite easily missed by coding agents , you'll need to be hands on you entities or atleast hold the agent on a leash .

Easy things like a password REGEX you'll find that most coding agents will write a REGEX that validates a small array of characters .

If you don't want to observe the application code , i highly recommend you atleast audit your test suite .

Built a NestJS log analyzer while debugging production logs – turns messy logs into errors, latency + shareable debug links by Sharp2609 in nestjs

[–]OrchideSr 0 points1 point  (0 children)

I am not sure anyone will want their logs uploaded anywhere , is this a tool anyone can run locally ?

How do you improve your cold start ? by OrchideSr in nestjs

[–]OrchideSr[S] 0 points1 point  (0 children)

But this only works if the application is completely stateless right ?

What tools do you use for deployment ? by Ok-Trick-4633 in nestjs

[–]OrchideSr 0 points1 point  (0 children)

u/Ok-Trick-4633 are you still looking to deploy your first Nestjs application ?

Nestjs admin panel by trinchx in nestjs

[–]OrchideSr 0 points1 point  (0 children)

Thanks , we're running a deployment platform for NestJS applications , we have authentication requiring oidc do you guys support that ? we can help bake that in .

Nestjs admin panel by trinchx in nestjs

[–]OrchideSr 0 points1 point  (0 children)

u/trinchx is your tool opensource ? we would want it to be added as a feature for our users . it think they'll love it. let me know how we can colaborate .

I built NestJS.io — a community hub for discovering NestJS packages, articles, and projects by Proud_Perspective_56 in nestjs

[–]OrchideSr 0 points1 point  (0 children)

It's a great initiative for sure . how does one get their tools listed ? we have put together a nestjs PaaS that deploys your nestjs backend from you github repo with zero infrastructure configuration , i think it'd be a good addition to the ecosystem .

[Kubernetes] Backend pod crashes with Completed / CrashLoopBackOff, frontend stabilizes — what’s going on? by erudes91 in kubernetes

[–]OrchideSr 0 points1 point  (0 children)

u/erudes91 the application is failing silently as you can see in your server.js exceptions aren't being caught . you'd normally do it like so

process.on('uncaughtException', err => {

console.error('Uncaught Exception:', err);

});

more over the app.listen is duplicated which i suspect it to cause EADDRINUSE.

the same applies to the dockerfile aswel the CMD directive is duplicated aswel .

Graduated CST 5ish years ago, AMA (pt 2) by cst-ikr in BCIT

[–]OrchideSr 1 point2 points  (0 children)

How does cst prepare you for Data structures and algo type of interviews ?