Notes:
This is an internal document describing how to update Opensource Game Studio website powered by Pelican.
Install Pelican with the following command:
sudo apt install pelican
To preview results locally:
cd pelican
pelican -s pelicanconf.py
cd output
python -m SimpleHTTPServer
The preview should now be available at http://localhost:8000.
To publish new content:
generate public site with the following commands:
cd pelican
pelican -s publishconf.py
upload it to GitHub with the following commands:
git add .
git push
The public site should now be available at Opensource Game Studio website.