Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1020B

Overview

This is an internal document describing how to update Opensource Game Studio website powered by Pelican.

Installation

Install Pelican with the following command:

sudo apt install pelican

Preview

To preview results locally:

  • generate local copy with the following commands:
    cd pelican
    pelican -s pelicanconf.py
    
  • serve the local copy with the following commands:
    cd output
    python -m SimpleHTTPServer
    

The preview should now be available at http://localhost:8000.

Publishing

To publish new content:

  • generate public site with the following commands:

    cd pelican
    pelican -s publishconf.py
    
  • upload it to GitHub with the following command:

    git push
    

The public site should now be available at Opensource Game Studio website.