There was an error while loading. Please reload this page.
1 parent ac4ddee commit 16a9f72Copy full SHA for 16a9f72
1 file changed
src/main.rs
@@ -39,7 +39,7 @@ const ICAL_ENDPOINT: &str = "/talks.ics";
39
#[command(version)]
40
struct Arguments {
41
/// Path to the storage directory.
42
- #[clap(long, default_value = ".")]
+ #[clap(long, default_value = "storage/")]
43
storage: PathBuf,
44
/// Port to listen on.
45
#[clap(long, default_value = "9559")]
@@ -48,7 +48,7 @@ struct Arguments {
48
#[clap(long, default_value = "[::]")]
49
address: String,
50
/// Path to the frontend directory.
51
- #[clap(long, default_value = "./frontend")]
+ #[clap(long, default_value = "frontend/")]
52
frontend: String,
53
}
54
0 commit comments