Metadata-Version: 1.0
Name: appsettings
Version: 0.1
Summary: A tiny helper to read the yaml file specified in the APP_SETTINGS_YAML env var and return an object with the parsed contents
Home-page: http://bits.btubbs.com/appsettings/
Author: Brent Tubbs
Author-email: brent.tubbs@gmail.com
License: UNKNOWN
Description: In Velociraptor, application config is passed into apps by setting an
        APP_SETTINGS_YAML environment variable that contains the path to the app's
        yaml-formatted settings file.
        
        This module provides helpers for reading and accessing that configuration
        information.
        
        Loading config::
        
            import appsettings
        
            my_config = appsettings.read()
        
        Using config::
        
            In [1]: import appsettings
        
            In [2]: config = appsettings.read()
        
            In [3]: config.DEBUG
            Out[3]: True
        
            In [4]: config.DATABASES.default.HOST
            Out[4]: 'vdeploydb.paix.yougov.local'
        
        
Platform: UNKNOWN
