Skip to content

Commit

Permalink
fix: try fix deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Panakotta00 committed Jul 20, 2024
1 parent 3c6e44e commit 3712ebd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Website/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ use crate::repository::Repository;
pub async fn app() -> Result<Router, anyhow::Error> {
let index_file = std::env::var("FIN_REPO_INDEX").unwrap_or(String::from("../index.zip"));
let url = std::env::var("FIN_REPO_RAW").unwrap_or(String::from(".."));
info!("Repository Index File: '{}'", index_file);
info!("Repository Raw Base URL: '{}'", url);
let repository = Repository::from_url(&index_file, url).await;

Ok(Router::new()
Expand Down

0 comments on commit 3712ebd

Please sign in to comment.