@@ -42,21 +42,31 @@ export default function Home() {
42
42
< pre className = { styles . codeHero } >
43
43
< code > { `$ curl -fsSL https://workers.wasmlabs.dev/install | bash
44
44
$ wws --help
45
+ A WebAssembly framework to develop and run serverless applications anywhere
46
+
45
47
Usage: wws [OPTIONS] [PATH] [COMMAND]
46
48
47
49
Commands:
48
50
runtimes Manage the language runtimes in your project
49
51
help Print this message or the help of the given subcommand(s)
50
52
51
53
Arguments:
52
- [PATH] Folder to read WebAssembly modules from [default: .]
54
+ [PATH] Location of the wws project. It could be a local folder or a git repository [default: .]
53
55
54
56
Options:
55
- --host <HOSTNAME> Hostname to initiate the server [default: 127.0.0.1]
56
- -p, --port <PORT> Port to initiate the server [default: 8080]
57
- --prefix <PREFIX> Prepend the given path to all URLs [default: ]
58
- -h, --help Print help information
59
- -V, --version Print version information` } </ code > </ pre >
57
+ --host <HOSTNAME> Hostname to initiate the server [default: 127.0.0.1]
58
+ -p, --port <PORT> Port to initiate the server [default: 8080]
59
+ --prefix <PREFIX> Prepend the given path to all URLs [default: ]
60
+ --ignore <IGNORE> Patterns to ignore when looking for worker files [default: ]
61
+ -i, --install-runtimes Install missing runtimes automatically
62
+ --git-commit <GIT_COMMIT> Set the commit when using a git repository as project
63
+ --git-tag <GIT_TAG> Set the tag when using a git repository as project
64
+ --git-branch <GIT_BRANCH> Set the branch when using a git repository as project
65
+ --git-folder <GIT_FOLDER> Change the directory when using a git repository as project
66
+ --enable-panel Enable the administration panel
67
+ --cors <CORS> CORS headers to add to all workers if not already set by the worker
68
+ -h, --help Print help
69
+ -V, --version Print version` } </ code > </ pre >
60
70
</ main >
61
71
</ Layout >
62
72
) ;
0 commit comments