From 9e5f45b846348ccfaef66a449edcd2f8cc3cbfd7 Mon Sep 17 00:00:00 2001 From: Alexis King Date: Sat, 29 Aug 2015 18:06:34 -0700 Subject: [PATCH] Add the '12factor' tag to "Deploying Racket applications on Heroku" --- .../posts/2015-08-22-deploying-racket-applications-on-heroku.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_src/posts/2015-08-22-deploying-racket-applications-on-heroku.md b/_src/posts/2015-08-22-deploying-racket-applications-on-heroku.md index 9b8f37b..c648397 100644 --- a/_src/posts/2015-08-22-deploying-racket-applications-on-heroku.md +++ b/_src/posts/2015-08-22-deploying-racket-applications-on-heroku.md @@ -1,6 +1,6 @@ Title: Deploying Racket applications on Heroku Date: 2015-08-22T14:47:49 - Tags: racket, heroku + Tags: racket, heroku, 12factor [Heroku][heroku] is a "platform as a service" that provides an incredibly simple way to deploy simple internet applications, and I take liberal advantage of its free tier for testing out simple applications. It has support for a variety of languages built-in, but Racket is not currently among them. Fortunately, Heroku provides an interface for adding custom build processes for arbitrary types of applications, called “buildpacks”. I've built one for Racket apps, and with just a little bit of configuration, it’s possible to get a Racket webserver running on Heroku.