diff --git a/README.md b/README.md index 04697a8..aff0137 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,7 @@ Cantariは、UTAUの歌声をVoicevoxで話させるためのエンジンです 1. [Releases](https://github.com/sevenc-nanashi/cantari/releases)から最新のバージョンの vvpp ファイルをダウンロードしてください。 2. Voicevoxの設定を開き、「高度な設定」から「マルチエンジン機能」を有効化してください。 3. 「エンジンの管理」/「追加」/「VVPP ファイル」からインストールしてください。 +4. [`127.0.0.1:50202`](http://127.0.0.1:50202) にアクセスして、UTAU音源のパスを設定してください。 ## ライセンス diff --git a/crates/cantari/src/main.rs b/crates/cantari/src/main.rs index c6650a9..99f6764 100644 --- a/crates/cantari/src/main.rs +++ b/crates/cantari/src/main.rs @@ -34,7 +34,7 @@ struct Cli { #[clap(short, long, default_value = "50202")] port: u16, /// ホスト名。 - #[clap(short, long, default_value = "127.0.0.1")] + #[clap(long, default_value = "127.0.0.1")] host: String, } @@ -133,7 +133,7 @@ async fn main_impl(args: Cli) -> Result<()> { info!("Starting server..."); - info!("Listening on port {}", args.port); + info!("Listening on http://{}", addr); axum::Server::bind(&addr) .serve(app.into_make_service()) @@ -150,5 +150,5 @@ async fn main_impl(args: Cli) -> Result<()> { } async fn get_index() -> impl IntoResponse { - Redirect::permanent("https://github.com/sevenc-nanashi/cantari") + Redirect::permanent("/settings") }