Skip to content

Commit

Permalink
Change: 設定にリダイレクトする
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi committed May 31, 2024
1 parent 473eaa1 commit 45640dc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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音源のパスを設定してください。

## ライセンス

Expand Down
6 changes: 3 additions & 3 deletions crates/cantari/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}

Expand Down Expand Up @@ -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())
Expand All @@ -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")
}

0 comments on commit 45640dc

Please sign in to comment.