docs: improve readme

This commit is contained in:
sigoden 2022-05-28 19:48:54 +08:00
parent 76569581dd
commit cdb7b5fc87
2 changed files with 7 additions and 2 deletions

View file

@ -36,12 +36,17 @@ You can run this command to start serving your current working directory on 127.
duf duf
``` ```
...or specify which folder you want to serve: ...or specify which folder you want to serve.
``` ```
duf folder_name duf folder_name
``` ```
Only serve static files, disable upload and delete operations
```
duf --static
```
Finally, run this command to see a list of all available option Finally, run this command to see a list of all available option

View file

@ -31,7 +31,7 @@ fn app() -> clap::Command<'static> {
let arg_static = Arg::new("static") let arg_static = Arg::new("static")
.long("static") .long("static")
.help("Only serve static files, not allowed to upload or delete file"); .help("Only serve static files, disable upload and delete operations");
let arg_auth = Arg::new("auth") let arg_auth = Arg::new("auth")
.short('a') .short('a')