|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- # Overview
-
- We consider changing [Opensource Game Studio website](http://opengamestudio.org)'s
- engine from Wordpress to [Pelican](http://getpelican.com). This is Pelican
- evaluation.
-
- # Installation
-
- You need a working Python's `pip`.
-
- Install Pelican with the following command:
-
- `sudo apt install pelican`
-
- # Preview
-
- * 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](http://localhost:8000).
-
- # Publishing
-
- * Generate public site with the following commands:
-
- `cd pelican`
-
- `pelican -s publishconf.py`
-
- * Upload it to GitHub with the following commands:
-
- `git push`
-
- The publich site should now be available at
- [http://kaisd.github.io/ogs-site](http://kaisd.github.io/ogs-site).
-
|