Deploy Public Bucket Image Proxy to the cloud for free with Railway, the all-in-one intelligent cloud provider. Public proxy for images in a bucket, with image optimization using imgproxy
This guide covers how to attach files to your Active Record models.After reading this guide, you will know: How to attach one or many files to a record. How to delete an attached file. How to link to an attached file. How to use variants to transform images. How to generate an image representation of a non-image file, such as a PDF or a video. How to send file uploads directly from browsers to a storage service, bypassing your application servers. How to clean up files stored during testing. How to implement support for additional storage services.
Deploy Public Bucket Image Proxy to the cloud for free with Railway, the all-in-one intelligent cloud provider. Public proxy for images in a bucket, with image optimization using imgproxy
Contribute to imgproxy/imgproxy-rails development by creating an account on GitHub.
Today I Learned (TIL) posts from Renuo team members. A collection of insights, tips, and lessons learned from our daily work.
A new RCE gadget chain discovered in the sqlite3 gem affects all default Rails installations. Learn how unsafe reflection leads to remote code execution.
We are deprecating Paperclip in favor of ActiveStorage. Learn what this means for you.
Dealing with bad news, very specific tools for the job and migrating from Paperclip to Active Storage.
Decamping to the north, two significant DIY projects and things learnt while continuing the migration to Active Storage.
Watermarking PDFs, alarming conditionals and other Computation Clubs.
I recently built a drag-and-drop and copy-and-paste file uploader for Markdown (like GitHub’s editor) using Stimulus and Active Storage. Check out the code and my write up on it.
Easy file attachment management for ActiveRecord. Contribute to thoughtbot/paperclip development by creating an account on GitHub.
Ruby on Rails. Contribute to rails/rails development by creating an account on GitHub.
Ruby on Rails has built-in support for managing uploaded files with ActiveStorage, which both cleans up your application code and acts as an abstraction over different storage backends. Azure Storage is one of the supported backends, but configuring it securely can take a little figuring out. The most sensible way I’ve found to have it configured is with files stored having no public access, but allowing temporary access via signed URLs for both uploads & downloads.