Nipunn Koorapati

Results 132 comments of Nipunn Koorapati

Someone in the community made a package - that you can take a look at here https://discord.com/channels/1019350475847499849/1156694974000283648/1347934449832165386 I haven't tried it myself.

There are a couple of workarounds to this bug for those who are blocked by this. ``` cd scripts npm install ``` and ``` npm ci --prefix scripts ``` Neither...

``` $ cat 'C:\Users\nipunn\AppData\Local\npm-cache\_logs\2024-08-15T07_24_46_615Z-debug-0.log' 0 verbose cli C:\Program Files (x86)\nodejs\node.exe C:\Program Files (x86)\nodejs\node_modules\npm\bin\npm-cli.js 1 info using [email protected] 2 info using [email protected] 3 silly config load:file:C:\ProgramData\nvm\v18.17.0\node_modules\npm\npmrc 4 silly config load:file:C:\Users\nipunn\src\convex-backend\scripts\.npmrc 5...

Can repro from CMD, Git Bash, Powershell `npm clean-install --prefix scripts` works fine.

I spent a couple hours looking into this since I have the repro. Got a fix here #7725

good idea. I'll see when I can make some time for it. install.test.js has some examples which I had taken a quick pass over. It was a little hard to...

The file storage code is more battle tested with S3 than with other providers. @Spioune worked on R2 support and might be able to help you out if they have...

ah yeah - I remember that the prebuilt docker image is built in release mode with debug symbols stripped (to save space) I just found the spot from searching https://github.com/get-convex/convex-backend/blob/c8b078060b57c70d355f729b70936cd7ce7a83ae/crates/aws_s3/src/types.rs#L64...

It seems like Digital Ocean doesn't return crc32 field in the response to the UploadPart call like S3 does. So it seems like Digital Ocean is slightly overpromising on its...

We've typically gone with building from source on the host machine. That's what I'd recommend and usually do personally. https://github.com/get-convex/convex-backend/blob/main/BUILD.md `just run-local-backend` after installing dependencies. If ya really want to...