Browse Source

[config] split host/port

Maxime Alves LIRMM@home 3 years ago
parent
commit
9eb1f582dc
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      pyheatpump/config.py

+ 3
- 1
pyheatpump/config.py View File

@@ -19,7 +19,9 @@ default_config = {
19 19
     },
20 20
     'supervisor': {
21 21
         'scheme': 'http',
22
-        'host': '127.0.0.1:8000',
22
+        'host': '127.0.0.1',
23
+        'port': 8008,
24
+        'certificate': 'None',
23 25
         'get_path': '/',
24 26
         'post_path': '/',
25 27
         'interval': 10000,

Loading…
Cancel
Save