Skip to content

Commit

Permalink
Release
Browse files Browse the repository at this point in the history
  • Loading branch information
enciyo committed Jun 11, 2024
1 parent 3eb2115 commit baf67e5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion che.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version=1.0.19
version=1.0.20
python=3.11
Binary file added che/__pycache__/__init__.cpython-311.pyc
Binary file not shown.
Binary file added che/__pycache__/utils.cpython-311.pyc
Binary file not shown.
4 changes: 3 additions & 1 deletion che/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion gh_che.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -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: [email protected]
Expand Down

0 comments on commit baf67e5

Please sign in to comment.