allow setting config file location via env var

This commit is contained in:
Blake Blackshear 2020-10-17 09:24:16 -05:00
parent 59e41ae1ac
commit 9d594cc640

View File

@ -25,6 +25,8 @@ from frigate.edgetpu import EdgeTPUProcess
FRIGATE_VARS = {k: v for k, v in os.environ.items() if k.startswith('FRIGATE_')}
CONFIG_FILE = os.environ.get('CONFIG_FILE', '/config/config.yml')
with open('/config/config.yml') as f:
CONFIG = yaml.safe_load(f)