Skip to content

Instantly share code, notes, and snippets.

@ben-ng
Created June 4, 2015 15:18
Show Gist options
  • Save ben-ng/7c8d0c537acfb0289617 to your computer and use it in GitHub Desktop.
Save ben-ng/7c8d0c537acfb0289617 to your computer and use it in GitHub Desktop.
A simple, slow server for testing deis' zero downtime deploys
setTimeout(function () {
require('http').createServer(function (req, res) {
res.end('yo!')
}).listen(process.env.PORT)
}, 45000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment