Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 1020 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 1020 Bytes

Fuse Documentation

Build Status

This is the source code for the documentation for Fuse, as hosted here.

The documentation is hosted on GitHub Pages, from the gh-pages branch. This branch gets automatically updated by a Travis CI build-step.

Running locally

  1. Run dotnet run -p generator/src/generator.csproj -- . "http://localhost:8000/" _site to build the HTML files.
  2. Run ./copy-assets.bash _site to copy assets into the target directory.
  3. Run find _site/media -type f \( -iname "*.png" -or -iname "*.jpg" \) -exec mogrify -strip -resize 450x450\> {} \; to resize images to the appropriate sizes.
  4. Run python3 -m http.server 8000 --directory _site/ (or whatever your favorite static http server is) to serve the website at port 8000.
  5. Open http://localhost/:8000 in your web browser to view the result.