Tomás

Results 26 comments of Tomás

> In Express 4, res.sendFile served hidden (dot) files by default. However, in Express 5 the behaviour changed—hidden files and files in hidden directories (like the default .adminjs folder) are...

I ended up installing the missing packages during docker build and patching `server.js` to start instrumentation. Extremely ugly, but it works... Here is an example `Dockerfile` based on https://github.com/vercel/next.js/blob/canary/examples/with-docker/Dockerfile with...

So weird we can only use gpt-3.5 that is already deprecated in Azure OpenAI. We should be able to use any deployment really.

I had to patch the readiness probe with: ```yaml readinessProbe: exec: command: - bash - -c - /mnt/elastic-internal/scripts/readiness-probe-script.sh ``` So it would use `readiness-probe-script.sh` instead of `readiness-port-script.sh`. The first one...

> I have a custom `ExpressLoader` in my app and used the same route reordering logic as in [src/loaders/express.loader.ts](https://github.com/SoftwareBrothers/adminjs-nestjs/blob/5772094f8297db1f1389adecba99864da0726c0b/src/loaders/express.loader.ts#L53-L105). After upgrading to NestJS 11, all my custom AdminJS route handlers...