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
- Host: GitHub
- URL: https://github.com/jmbowman/stealthy_django_deployments
- Owner: jmbowman
- License: cc-by-4.0
- Created: 2016-06-24T15:32:45.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-06-24T15:37:58.000Z (almost 9 years ago)
- Last Synced: 2025-01-12T19:45:06.433Z (5 months ago)
- Language: Python
- Size: 1.2 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.