I'm new to sails and nodejs, and trying to figure out how best to handle configuration, particularly in usage with Docker. It's been suggested to me that I maintain a separate folder with all the config files outside of the Sails application that Sails will read from before starting up the application.
Based on what I understand about Sails, I would want to bootstrap a method that would copy the config files (using fs?) from a outside directory that I store the configuration.
Is there a better way to do this?
Thanks.