Nipunn Koorapati

Results 199 comments of Nipunn Koorapati

Try wiping out your .env.local and starting over again. ``` mv .env.local .env.local.bak ```

https://docs.convex.dev/database/import-export/import#single-table-import is the spec for the behavior. Seems like there may be a bug here where the string is being interpreted as a number. You can work around it by...

we're working on having multiple supported versions of node in the action runtime. Let's reevaluate this after that work is done.

Unlike S3, when you upload a file to Convex file storage, you don't specify an object key. Rather Convex gives you an object key. Eg ``` // Store the image...

Have you tried to get that behavior from S3? I don't think that seems possible with conditional writes. You're asking for something stronger - a deduplication by object key. https://docs.aws.amazon.com/AmazonS3/latest/userguide/conditional-requests.html...

Can you write some code or pseudocode that describes what you're trying to achieve with the calls to S3? I am not understanding how a call to GetObjectAttributes achieves what...

> In my last message, I wasn’t referring to conditional writes. I was simply suggesting the use of [file metadata](https://docs.convex.dev/file-storage/file-metadata) to prevent storing the same object multiple times. The goal...

Hi! Thanks for the contribution. We're a little busy over here, so can't promise to get to it in a timely manner. We'll take a look when we get a...

Sounds like a great idea. I suspect there are some typescript linters that could help you here (dead code linters like `no-unused-vars`). If you get something working, let us know....