I have a rails app where my seeds file accesses a storage/ folder which has several .md files, to read the data and populate the DB.
I fly deployed the app, but the seeds failed due to missing files, and when I checked the console I found the following:
irb(main):001> Dir["storage/*"]
=> []
I assume this is intentional to avoid populating the servers with Readme files, but is there a setting I could change in order to allow the upload?