Skip to content

cpp-gamedev/blog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

1fc39ac · Apr 20, 2021

History

37 Commits
Feb 25, 2020
Mar 26, 2021
Apr 20, 2021
Apr 5, 2021
Feb 26, 2020
Feb 25, 2020
Feb 26, 2020
Feb 24, 2020
Feb 26, 2020
Mar 26, 2021
Feb 25, 2020

Repository files navigation

CPP Gamedev Blog

Running the site locally

The site is built with hugo, which needs to first be installed. The extended version of hugo is required.

The site uses submodules to store the theme, which needs to be inited after cloneing the repo. This can be done with:

git clone https://github.com/cpp-gamedev/blog.git
cd blog
git submodule update --init --recursive

Then to run the server locally (with drafts)

hugo server -D

Then navigate to http://localhost:1313 to browse the site and see your changes. The site will automatically reload for any files changes.