You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 873B

6 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # Overview
  2. We consider changing [Opensource Game Studio website](http://opengamestudio.org)'s
  3. engine from Wordpress to [Pelican](http://getpelican.com). This is Pelican
  4. evaluation.
  5. # Installation
  6. You need a working Python's `pip`.
  7. Install Pelican with the following command:
  8. `sudo apt install pelican`
  9. # Preview
  10. * Generate local copy with the following commands:
  11. `cd pelican`
  12. `pelican -s pelicanconf.py`
  13. * Serve the local copy with the following commands:
  14. `cd output`
  15. `python -m SimpleHTTPServer`
  16. The preview should now be available at
  17. [http://localhost:8000](http://localhost:8000).
  18. # Publishing
  19. * Generate public site with the following commands:
  20. `cd pelican`
  21. `pelican -s publishconf.py`
  22. * Upload it to GitHub with the following commands:
  23. `git push`
  24. The publich site should now be available at
  25. [http://ogstudio.github.io](http://ogstudio.github.io).