From 13225cefdc302d3492932d6e9786c0553e940502 Mon Sep 17 00:00:00 2001 From: Rui Carmo Date: Fri, 12 May 2023 08:44:32 +0100 Subject: [PATCH] =?UTF-8?q?Remove=20my=20release=20mention=20in=20favor=20?= =?UTF-8?q?of=20Chris=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/DESIGN.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/DESIGN.md b/docs/DESIGN.md index 08ae7c5..e150af0 100644 --- a/docs/DESIGN.md +++ b/docs/DESIGN.md @@ -24,7 +24,6 @@ An app is simply a `git` repository with some additional files on the top level, * `release` which is a special worker that is run once when the app is deployed, after installing deps (can be useful for build steps). * `cron` workers, which require a simplified `cron` expression preceding the command to be run (e.g. `cron: */5 * * * * python batch.py` to run a batch every 5 minutes) * `worker` processes, which are standalone workers and can have arbitrary names -* You can optionally also specify a `release` worker which is run once when the app is deployed. So a Python application could have a `Procfile` like such: