We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b29e0c commit 1b7c2cbCopy full SHA for 1b7c2cb
1 file changed
modules/common_params.py
@@ -1,3 +1,4 @@
1
+import os
2
import modules.log as g_log
3
4
@@ -71,7 +72,7 @@
71
72
},
73
'mlapi_secret_key':{
74
'section': 'general',
- 'default': None,
75
+ 'default': os.getenv('MLAPI_SECRET_KEY'),
76
'type': 'string',
77
78
@@ -195,7 +196,7 @@
195
196
197
'alpr_key': {
198
'section': 'alpr',
- 'default': '',
199
+ 'default': os.getenv('MLAPI_ALPR_KEY'),
200
201
202
'alpr_use_after_detection_only': {
0 commit comments