How do I sync ActiveStorage files between development (local) and production (Amazon S3)?
I have a Rails 6 app on Heroku with a Postgresql database and ActiveStorage on Amazon S3.
Sometimes I need to sync my local db with production data to make debug easier. And it works great. I want to do the same with ActiveStorage files.
Is there a way to download production files, which is hosted on an Amazon S3 bucket, to my local machine? Preferably an incremental download.
I searched across the web and found nothing about it. :-(
Thank you!