I am making changes to the content of the site on heroku. After about 1.5 hours, everything rolls back. Disconnecting from GIT didn't help. Is there any other setting?
Asked
Active
Viewed 10 times
0
-
You are almost certainly modifying the local filesystem, e.g. by using a file-based database like SQLite or saving uploaded content like images. Heroku's [ephemeral filesystem](https://devcenter.heroku.com/articles/dynos#ephemeral-filesystem) is quite well documented and [frequently asked about here](https://stackoverflow.com/search?q=%5Bheroku%5D+changes+lost). – ChrisGPT was on strike Oct 23 '22 at 10:48
-
I recommend checking out Render (full disclosure: I work there). It's similar to Heroku, but has Disks (https://render.com/docs/disks) so you can persist data that's in SQLite. – Dnilasor Oct 24 '22 at 21:33