6 ms·
Do any of these static generators keep configs and themes with wherever you happen to upload your static content "example: github"? Just curious if moving from
by cdevs 9y ago
Do any of these static generators keep configs and themes with wherever you happen to upload your static content "example: github"?
Just curious if moving from one machine to another if it's easy to download something like Gutenberg , clone your git and start working?
- shadedtriangle 9y agoShameless self promotion but my static site tool Static-Fire is based off Git. Everything from the config to the python source to the articles you write is all in the same repo. https://github.com/cusiman7/Static-Fire https://github.com/cusiman7/Static-Fire
- eberkund 9y agoYes, they all work pretty similarly and the Git repo is fairly self contained. You (mostly) just point the generator software at the repo which includes your content, config and theme and it compiles it into HTML files.
- kaushalmodi 9y agoOnce you get confident with your static site generator, you don't even have to download it or run it locally (not kidding). I have my Hugo-based blog on Gitlab (content, themes, config, etc). I just need to commit changes to my plain text content (Org/Markdown) -> Netlify sees the commit -> Runs hugo to generate the site -> Site gets published.