Skip to content

Latest commit

 

History

History
47 lines (30 loc) · 1.81 KB

README.md

File metadata and controls

47 lines (30 loc) · 1.81 KB

Camunda Cloud Documentation

This repository contains the sources of the Camunda Cloud Documentation. The framework used for this is Docusaurus.

Running the documentation locally

Change to the website directory and run npm run start:

cd website
npm run start

You can now browse the docs under http://localhost:3000/. Docusaurus will automatically detect when you change a file and refresh the page in the browser.

Publishing

All commits to the branch gh-pages are automatically published to GitHub Pages. Locally you can use the following command as well:

cd website
GIT_USER=${user} CURRENT_BRANCH=master USE_SSH=true npm run publish-gh-pages

License

Creative Commons License The content on this site is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License.

Writing docs

There are two places to consider:

  1. The documentation itself is located in the docs directory.
  2. The framework in the folder website.

Documentation

  • All Markdown files are located in the docs folder. Each markdown file has a header, which contains an ID and a title.
  • Images or other files are stored in the folder docs/assets.

Framework