Documentation
The wasmCloud documentation site is hosted on GitHub and built with Docusarus.
Choosing a good first issue is a great way to get started.
Running the site locally
npm ci
npm run start
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
Build
npm run build
This command generates static content into the build directory and can be served using any static contents hosting service. It's a good idea build in order to check for errors like broken links that may prevent a successful deployment.
Serving static content
To serve the generated static content:
npm run serve
Generating CLI documentation
The command-line documentation at docs/cli/index.mdx is generated using the --help-markdown argument with wash. An easy way to run the command is wash app list --help-markdown > help.md. Once you've generated CLI documentation, copy the contents to the index.mdx file linked above.
Making a pull request
See the Pull Request section of the Contributing Guide. Note that a --signoff argument is required with your commits.