Skip to content

Commit

Permalink
ポート番号を50121に (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba authored May 14, 2023
1 parent 8d7e765 commit adecf49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build_util/check_release_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

import soundfile

base_url = "http://localhost:50021/"
base_url = "http://localhost:50121/"


def test_release_build(dist_dir: Path) -> None:
Expand Down
2 changes: 1 addition & 1 deletion run.py
Original file line number Diff line number Diff line change
Expand Up @@ -1081,7 +1081,7 @@ def setting_post(
parser.add_argument(
"--host", type=str, default="127.0.0.1", help="接続を受け付けるホストアドレスです。"
)
parser.add_argument("--port", type=int, default=50021, help="接続を受け付けるポート番号です。")
parser.add_argument("--port", type=int, default=50121, help="接続を受け付けるポート番号です。")
parser.add_argument(
"--use_gpu", action="store_true", help="指定するとGPUを使って音声合成するようになります。"
)
Expand Down

0 comments on commit adecf49

Please sign in to comment.