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