- Configure Kirby for Dokku
- Install deployment-keys and host keys Dokku plugins
- Set up staging and production environments
- Clone project repository into apps persistent storage folders
- Mount desired folders including
.git
folder to apps - Add
GIT_DIR
andGIT_WORK_TREE
environment variables to containers - Deploy to Dokku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<title>Slideshow</title> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
</head> | |
<body> | |
<div |
I hereby claim:
- I am jvgreenaway on github.
- I am jvg (https://keybase.io/jvg) on keybase.
- I have a public key ASBbHKbE-rs9mSqP6sZdShVrYZ8kUFtTxUbP0ckAIcue7Qo
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// The && and || operators use short-circuit logic, which means whether they will execute their second operand is dependent on the first. This is useful for checking for null objects before accessing their attributes: | |
var name = o && o.getName(); | |
// Or for setting default values: | |
var name = otherName || "default"; | |