diff options
author | Oliver Poignant <oliver@poignant.se> | 2017-01-04 01:06:31 +0100 |
---|---|---|
committer | Oliver Poignant <oliver@poignant.se> | 2017-01-04 01:06:31 +0100 |
commit | 64b5ecd076710fdf0ed0f86fa7fb185caa183ddb (patch) | |
tree | f7afbe19d5212081018289f16838eec3974d22aa /gitautodeploy/cli/config.py | |
parent | d0c3f84a9be3f9ca4b2fbf63edf5951d3be1ea65 (diff) | |
download | Git-Auto-Deploy-64b5ecd076710fdf0ed0f86fa7fb185caa183ddb.zip Git-Auto-Deploy-64b5ecd076710fdf0ed0f86fa7fb185caa183ddb.tar.gz Git-Auto-Deploy-64b5ecd076710fdf0ed0f86fa7fb185caa183ddb.tar.bz2 |
Web socket server implementation
Diffstat (limited to 'gitautodeploy/cli/config.py')
-rw-r--r-- | gitautodeploy/cli/config.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gitautodeploy/cli/config.py b/gitautodeploy/cli/config.py index f87057e..6cd62be 100644 --- a/gitautodeploy/cli/config.py +++ b/gitautodeploy/cli/config.py @@ -28,7 +28,9 @@ def get_config_defaults(): config['web-ui'] = { 'enabled': False, - 'remote-whitelist': ['127.0.0.1'] + 'remote-whitelist': ['127.0.0.1'], + 'ws-host': '0.0.0.0', + 'ws-port': 9000 } return config |