Instead of simply defining constants at the top of each respective flask application, we should write separate modules for each that define global variables to hold these settings. We can then simply do a 'from ... import *' in each module. This will serve as a stop-gap method between what we have now and a true config file later.
Instead of simply defining constants at the top of each respective flask application, we should write separate modules for each that define global variables to hold these settings. We can then simply do a 'from ... import *' in each module. This will serve as a stop-gap method between what we have now and a true config file later.