diff --git a/docs/src/pages/index.js b/docs/src/pages/index.js index 252c39eb..c468df70 100644 --- a/docs/src/pages/index.js +++ b/docs/src/pages/index.js @@ -42,6 +42,8 @@ export default function Home() {
           {`$ curl -fsSL https://workers.wasmlabs.dev/install | bash
 $ wws --help
+A WebAssembly framework to develop and run serverless applications anywhere
+
 Usage: wws [OPTIONS] [PATH] [COMMAND]
 
 Commands:
@@ -49,14 +51,22 @@ Commands:
   help      Print this message or the help of the given subcommand(s)
 
 Arguments:
-  [PATH]  Folder to read WebAssembly modules from [default: .]
+  [PATH]  Location of the wws project. It could be a local folder or a git repository [default: .]
 
 Options:
-      --host   Hostname to initiate the server [default: 127.0.0.1]
-  -p, --port       Port to initiate the server [default: 8080]
-      --prefix   Prepend the given path to all URLs [default: ]
-  -h, --help             Print help information
-  -V, --version          Print version information`}
+ --host Hostname to initiate the server [default: 127.0.0.1] + -p, --port Port to initiate the server [default: 8080] + --prefix Prepend the given path to all URLs [default: ] + --ignore Patterns to ignore when looking for worker files [default: ] + -i, --install-runtimes Install missing runtimes automatically + --git-commit Set the commit when using a git repository as project + --git-tag Set the tag when using a git repository as project + --git-branch Set the branch when using a git repository as project + --git-folder Change the directory when using a git repository as project + --enable-panel Enable the administration panel + --cors CORS headers to add to all workers if not already set by the worker + -h, --help Print help + -V, --version Print version`} );