How do image transformation billing work?
I dont believe Im transforming them, but Im looking at 50ish image transformations
Im just using
export const getFilePreview = async (fileId: string) => {
const fileUrl = storage.getFilePreview(appwriteConfig.storageId, fileId);
return fileUrl as string;
};
Also, show i be storing the entire storage.getFilePreview returned link in my db or just my fileId? I want to reduce bandwidth and I believe storage.getFilePreview uses up the bandwidth (does it?)
Recommended threads
- [BUG] The cloud cannot be migrated to se...
The cloud cannot be migrated to self-hosting. The content of this post is exactly the same as [issue 11068](https://github.com/appwrite/appwrite/issues/11068) ...
- Rate límit reset
I've made an error in the code by not setting a limit on how much rows should i get per request because i was working with a small db for testing. Last night Iv...
- How to set permissions using the createO...
Hi, I'm trying to create a set of registers in a table using the tableDB.createOperations function, but it seems like it doesnt support/expect the usage of the ...