Hi there! 👋🏼
I'm Chris, an Engineering Leader based in Vienna, Austria 🇦🇹
This blog was created using Jekyll, a static site generator and Liquid, a template engine.
Since Jekyll is a static site generator, it has to build the site before you can view it.
Build the site and output a static site to a directory called _site:
bundle exec jekyll buildBy using the --verbose build command option you can print verbose output.
bundle exec jekyll build --verboseExecutes bundle exec jekyll build and runs it on a local web server at http://localhost:4000.
bundle exec jekyll servePass the --livereload option to serve to automatically refresh the page with each change you make to the source files:
bundle exec jekyll serve --livereloadTo preview your site with drafts, run jekyll serve or jekyll build with the --drafts switch.
bundle exec jekyll serve --draftsOutputs any deprecation or configuration issues.
bundle exec jekyll doctorRemoves all generated files: destination folder, metadata file, Sass and Jekyll caches.
bundle exec jekyll clean