diff --git a/slides/deployment.html b/slides/deployment.html
new file mode 100644
index 0000000..f742b9a
--- /dev/null
+++ b/slides/deployment.html
@@ -0,0 +1,114 @@
+
+
+
+
+ Deploying Your Dumb Ideas with Dokku
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Deploying
+ Your Dumb Ideas
+ With Dokku
+
+
+
+
+
+ Dave Smith-Hayes
+
+ - Developer
+ - Father
+ - JavaScript Enjoyer
+ - Web Software Deployer
+
+
+
+
+
+
+ Releasing software to be used.
+
+
+
+ How it works for Web
+
+ - Have a DNS record point to an IP
+ - Have a webserver runnning at that IP
+ - Have that webserver proxy requests to the application
+
+
+
+ My history of deploying
+
+
+
+
+ - cPanel File Manager
+ - FTP to Shared Hosting
+ $ git pull
+ - Jenkins & Ansible build VM Images
+ - Packer & Terraform build Continers
+
+
+
+
+ Doing it Yourself
+
+ - Do not use AWS, its too expensive
+ - Your small project is not worth the cost
+ - Use a small VPS from DigitalOcean or Linode
+ - Get a public IP address and root access
+
+
+
+
+ Blue/Green Deployment
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/slides/index.html b/slides/index.html
index 690f01b..0e10c61 100644
--- a/slides/index.html
+++ b/slides/index.html
@@ -30,7 +30,7 @@
- Publishing an application to be used
+ Publishing an application to be used.