An open API service indexing awesome lists of open source software.

https://github.com/jmbowman/stealthy_django_deployments

Presentation on zero downtime deployments given at the Django Boston Meetup
https://github.com/jmbowman/stealthy_django_deployments

Last synced: 3 months ago
JSON representation

Presentation on zero downtime deployments given at the Django Boston Meetup

Awesome Lists containing this project

README

        

## Overview

This was the presentation I gave at the Django Boston Meetup on June 23, 2016
on "Stealthy Django Deployments". A PDF of the slides is present in the
root directory, read on if you're interested in the technical details of how
the presentation was made.

## Installation and slide generation

To generate the HTML slides as they were presented:

* `git clone https://github.com/jmbowman/stealthy_django_deployments.git`
* Install [virtualenv](https://virtualenv.pypa.io/en/stable/), if you haven't
already done so
* Create and activate a virtualenv (for example, `virtualenv env` followed by
`. env/bin/activate`)
* `pip install -r requirements.txt`
* `make html`

## Implementation notes

The presentation was written as a single reStructuredText file (`index.rst`).
This was converted to a [reveal.js](https://github.com/hakimel/reveal.js/)
HTML presentation via [Sphinx](http://www.sphinx-doc.org/en/stable/) using the
[sphinxjp.themes.revealjs](https://github.com/tell-k/sphinxjp.themes.revealjs)
extension. The flowcharts in the presentation were defined inline using the
[sphinxcontrib-blockdiag](http://blockdiag.com/en/blockdiag/sphinxcontrib.html)
extension.

The PDF was saved from the HTML presentation via Chrome using the reveal.js
[print stylesheet](https://github.com/hakimel/reveal.js#pdf-export).

## License

The presentation is made available under the terms of the Creative Commons
[Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/)
license.