Skip to content

Latest commit

 

History

History
51 lines (35 loc) · 1.3 KB

CONTRIBUTION.md

File metadata and controls

51 lines (35 loc) · 1.3 KB

Contribution

This website is built using Docusaurus 2, a modern static website generator.

Installation

yarn install

Local Development

yarn 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

yarn build

This command generates static content into the build directory and can be served using any static contents hosting service.

Auto Deployment

Merges to main branch will automatically be deployed at https://docs.cosmwasm.com

Adding New Page

  • /docs contains next CosmWasm documentation. Version follows cosmwasm-std.
  • /docs_versioned_docs contains old and current versions CosmWasm documentation. Version follows cosmwasm-std.
  • /tutorials contains unversioned cosmwasm tutorials.
  • /cw-plus contains cosmwasm-plus documentation. It is listed under dApps.

Create a markdown page under related category, and put order information as header.

---
sidebar_position: 3
---

The documentation will be shown automatically.

Creating New Category

Create a now folder, and write category information under _category_.json It will be listed on the website.