I have a small Node.js application running on Heroku that currently does not need or has persistent state storage.
However, I want to add a function that requires that several very small parts (less than 1 Kbyte of data) remain between deployments.
What is the best way to add this state to my Heroku application while still being able to easily deploy this application using the "Deploy to Heroku" button?
So far, the only potential solution I see will be with the addition of the free PostgreSQL addon, which seems like a massive overflow.
Lange source
share