Skip to content

Orange-OpenSource/hurl-dev

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

deploy status

Hurl Official Documentation Site

The official documentation site for Hurl.

This repo contains only the documentation and tutorials for Hurl. If you're looking for Hurl source code, please check out https://github.com/Orange-OpenSource/hurl. Please note that the canonical sources for the documentation are on the Hurl repository. This repo uses this doc to build a Jekyll powered documentation site, so it can be seen as a read-only view on the canonical docs.

Contributing

Edits on documentation are done via pull request in the Hurl repository. All docs files are under docs/ repository, in Markdown. Once a pull request is accepted, modifications are automatically published to https://hurl.dev via the publish GitHub action.

Local build

Prerequites

Build

$ cd sites
$ ./build.sh

Run local static site

$ cd sites
$ python3 -m http.server --dir hurl.dev/_site 4000

Run and watch local site

$ cd sites
$ jekyll serve --source hurl.dev --destination hurl.dev/_site

When running with Jekyll, the local built is rerun automatically for each modification. In this mode, Hurl code snippets haven't any syntax coloring.

Scripts