23 lines
824 B
ReStructuredText
23 lines
824 B
ReStructuredText
russell.ballestrini.net
|
|
#######################
|
|
|
|
This is the source code for my blog. My blog is a static web site with just HTML!
|
|
This project uses Pelican (a static site generator) to produce HTML from ``.rst`` or ``.md`` files.
|
|
|
|
Pelican is written in Python and uses Jinja2 template engine by default.
|
|
|
|
development
|
|
===============================
|
|
|
|
In development I use a ``make`` file to hold common build and test commands::
|
|
|
|
make clean && make html && make serve
|
|
|
|
|
|
production release process
|
|
===============================
|
|
|
|
I use `Jenkins to build this site and Salt Stack to release it <http://russell.ballestrini.net/securely-publish-jenkins-build-artifacts-on-salt-master/>`_
|
|
|
|
Any web server may be used to an HTML site. I choose nginx in production because it is known to be very fast at serving static files.
|
|
|