8 lines
126 B
Python
8 lines
126 B
Python
|
# Load configuration file
|
||
|
#
|
||
|
|
||
|
import envyaml
|
||
|
import os
|
||
|
|
||
|
config = envyaml.EnvYAML(os.environ.get('CONFIG_PATH', 'config.yaml'))
|