#Recommendations for an image storage service

15 messages · Page 1 of 1 (latest)

strange idol
#

I have a website that generates AI-powered images. I need a service that allows me to store these images and retrieve them when required. Additionally, I want to store other data associated with the images, such as prompt text, and have them linked together.

Currently, I am using Supabase for authentication, which provides storage options. However, its free tier has a limitation of 1GB. I am also using Sanity for my blog, and its free tier offers 100GB storage. But I am unsure if I should use it for storing images, and whether it is possible to post data outside the Sanity Studio.

What would you recommend in this situation?

timid apexBOT
#

🔎 This post has been indexed in our web forum and will be seen by search engines so other users can find it outside Discord

🕵️ Your user profile is private by default and won't be visible to users outside Discord, if you want to be visible in the web forum you can add the "Public Profile" role in id:customize

✅ You can mark a message as the answer for your post with Right click -> Apps -> Mark Solution
(if you don't see the option, try refreshing Discord with Ctrl + R)

quiet zodiac
#

aws s3

#

or cloudflare r2

#

for storing your images

#

idk about integration with sanity

#

but if you're writing nextjs code for uploading and managinig images

#

its standard s3 operations

#

take a look at my next-upload package on npm/github if you need some abstractions around s3 file uploading

strange idol
quiet zodiac
#

you can store metadata in s3

#

but I suggest storing a reference to your s3 object

#

and saving it in your db

#

and then storing the text in there