Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wasmcloud/wasmcloud.com
https://wasmCloud.com website, documentation, blog, and community meetings, built with Docusaurus.
https://github.com/wasmcloud/wasmcloud.com
documentation docusaurus netlify webassembly website
Last synced: 9 days ago
JSON representation
https://wasmCloud.com website, documentation, blog, and community meetings, built with Docusaurus.
- Host: GitHub
- URL: https://github.com/wasmcloud/wasmcloud.com
- Owner: wasmCloud
- License: apache-2.0
- Created: 2021-02-01T04:30:03.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-12-18T21:55:22.000Z (9 days ago)
- Last Synced: 2024-12-18T22:35:08.831Z (9 days ago)
- Topics: documentation, docusaurus, netlify, webassembly, website
- Language: MDX
- Homepage: https://wasmcloud.com
- Size: 140 MB
- Stars: 16
- Watchers: 6
- Forks: 45
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Contributing: docs/contributing/_category_.json
- License: LICENSE
- Codeowners: .github/CODEOWNERS
- Roadmap: docs/roadmap/2023-q3q4.md
- Authors: authors.yml
Awesome Lists containing this project
README
[![Netlify Status](https://api.netlify.com/api/v1/badges/bbca7efa-bdeb-49d8-86cd-3fcb6dcea34f/deploy-status)](https://app.netlify.com/sites/dreamy-golick-5f201e/deploys)
# wasmCloud.com
Repository for the wasmCloud homepage including our community, team, docs, links, and as an ingress point for interested developers. This site is built with [Docusarus](https://docusaurus.io/).
## Running the site locally
```bash
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
```bash
npm run build
```This command generates static content into the `build` directory and can be served using any static contents hosting service.
#### Serving static content
To serve the generated static content:
```bash
npm run serve
```