
Hey I wanted to ask what is the quota for Image Transformations on getFilePreview endpoint for github student plan. As far as I know, it's similar to Basic Pro plan so 100 origin images per month?

<div className="aspect-video relative mb-4">
{/* Use the previewUrl as the image source */}
<Image
src={
`https://cloud.appwrite.io/v1/storage/buckets/67a6452c003b5b6b6502/files/${note.fileId}/preview?project=679a700c0013ee3706ba` ||
"/jerry.jpg"
} // Fallback to '/jerry.jpg' if previewUrl is empty
alt={note.title}
fill
className="object-cover rounded-md pointer-events-none select-none"
/>
</div>
<p className="text-base text-muted-foreground mb-2 line-clamp-2">
{note.description}
</p>
</CardContent>

like I'm using that endpoint to get the file-preview as an image, nothing fancy

yes, correct, same as Pro plan.

btw, you're not really making use of the image transformations, so you should use the view endpoint and not the preview one

hey thanks!! that worked

also how long is the github education active before needing renew (duration) I think the github education offers renewal after every 2 years
So if i signup now I have to renew the appwrite education after 2 years?
Recommended threads
- Best way to return html from cloud funct...
Right now I am return text ``` return response.text(JoinTeamHtml.successResponse(code), 200, {'Content-Type': 'text/html; charset=utf-8'}); ``` my c...
- storage.getFileDownload returns an empty...
Hi, I am using the nodejs sdk with version 22. When I run the getFileDownload method, the response is always an empty object. The getFile works, it returns the ...
- Random timeouts after last incident
I am getting lots of timeouts since yesterday's incident, speaking in terms of multiple 100s just today. Also, very frequently, request are taking lots of time ...
