The blog you’re currently reading is a written in Markdown, then an application runs and generates static html files. This is called a static site generator, there are several static site generators. Previously I used Jekyll and recently I decided it was time for something new, I migrated to Hugo. Let my explain why I did this and what was needed to make this happen.| Coding Stephan
Install Hugo on macOS, Linux, Windows, BSD, and on any machine that can run the Go compiler tool chain.| gohugo.io
Host your site on GitHub Pages with continuous deployment using project, user, or organization pages.| gohugo.io
hugo server Start the embedded web server Synopsis Hugo provides its own webserver which builds and serves the site. While hugo server is high performance, it is a webserver with limited options. The hugo server command will by default write and serve files from disk, but you can render to memory by using the --renderToMemory flag. This can be faster in some cases, but it will consume more memory. By default hugo will also watch your files for any changes you make and automatically rebuild th...| gohugo.io