The website for SpiffWorkflow.org
Go to file
Dan Funk fa270e55b0 adding ieee artile. 2024-09-10 11:03:16 -04:00
archetypes initial commit. 2022-12-26 15:23:37 -05:00
assets/fresh/partials initial commit. 2022-12-26 15:23:37 -05:00
content fixes 2024-07-30 17:12:50 -04:00
layouts update the try now button link 2024-08-21 11:47:37 -04:00
public adding ieee artile. 2024-09-10 11:03:16 -04:00
resources/_gen/assets Redirect page. 2024-04-01 15:48:17 -04:00
static updated site to be a little more open source, a little less business, and then direct traffic towards Sartography for support 2024-07-02 16:54:51 -04:00
themes/fresh Create a stronger presenes of the IEEE article. 2024-04-15 18:04:27 -04:00
.gitignore git ignore file. 2023-01-03 09:02:54 -05:00
.gitmodules initial commit. 2022-12-26 15:23:37 -05:00
.hugo_build.lock initial commit. 2022-12-26 15:23:37 -05:00
README.md bump 2023-11-06 17:03:47 -05:00
config.yaml updated site to be a little more open source, a little less business, and then direct traffic towards Sartography for support 2024-07-02 16:54:51 -04:00

README.md

SpiffWorkflow landing page and blog

To get started, install Hugo. From there you can just run hugo serve and you should get the site as designed.

Theme

We used the Fresh Theme Documentation Live Demo

Deployment

This is auto-deployed through CloudFlare's pages. Please be sure that the correct version of Hugo is set in Cloud Flare's Workers & Pages / Settings / Environment Variables.

Generating Animated gifs

I used roughly a quarter of my standard screen to record videos with OBS Studio. I then converted the mp4 files to gifs with the following command:

ffmpeg -i scripts.mp4 -r 15   -vf "scale=1024:-1,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" scripts.gif 

adding the following will speed the video up so it is 25% as long as it was originally.
-vf "setpts=0.25*PTS;"