diff --git a/che.properties b/che.properties index 25ec0ae..cca4893 100644 --- a/che.properties +++ b/che.properties @@ -1,2 +1,2 @@ -version=1.0.19 +version=1.0.20 python=3.11 diff --git a/che/__pycache__/__init__.cpython-311.pyc b/che/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000..3959edd Binary files /dev/null and b/che/__pycache__/__init__.cpython-311.pyc differ diff --git a/che/__pycache__/utils.cpython-311.pyc b/che/__pycache__/utils.cpython-311.pyc new file mode 100644 index 0000000..1c2fefa Binary files /dev/null and b/che/__pycache__/utils.cpython-311.pyc differ diff --git a/che/main.py b/che/main.py index 308732d..c2e1f71 100644 --- a/che/main.py +++ b/che/main.py @@ -28,6 +28,7 @@ def project(ctx, path): config["project_path"] = os.path.abspath(path) if path else os.getcwd() utils.save_config(config) + @cli1.command("show-config", help="Show the configuration.") @click.pass_context def show_config(ctx): @@ -48,7 +49,8 @@ def start(ctx, port, debug, force_kill, path): config["debug"] = debug config["project_path"] = os.path.abspath(path) if path else os.getcwd() script_path = os.path.join(os.path.dirname(__file__), "binding.py") - args = ["-p", f"{port}", "-s", script_path, "--set", "ssl_insecure=true"] + args = ["-p", f"{port}", "-s", script_path, "--set", + "allow_hosts=githubcopilot.com", "--view-filter '~d githubcopilot.com'"] if force_kill: ctx.invoke(stop) diff --git a/gh_che.egg-info/PKG-INFO b/gh_che.egg-info/PKG-INFO index b663c85..18ec758 100644 --- a/gh_che.egg-info/PKG-INFO +++ b/gh_che.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: gh-che -Version: 1.0.15 +Version: 1.0.19 Summary: Chat History Exporter Author: mustafakilic Author-email: ben@mustafakilic.com