I use an external API for a part of an application I’m building. It requires an application wide authentication token to be requested every 2 hours. What is the best way to store this token?
Usually, I store application wide client_ids and client_secrets and such in ypplication.yml, but those typically don’t change
I usually store User level auth_tokens and such on the User model as a column , but in this case it is application wide.
What’s the place mechanism or way to store this global (in that all users will use the same one) string that changes frequently?