From e867362d41122b65eddcb1d3ad17b652ed45fa03 Mon Sep 17 00:00:00 2001 From: Yuval Adam Date: Thu, 14 Feb 2013 13:10:21 +0200 Subject: Update README --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index a8798c9..ee18172 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,14 @@ -Heroku Periodic -=============== +# Heroku Periodical A skeleton app based on Heroku/Python/Celery that runs a single worker executing periodical tasks. This skeleton can be used to quickly run periodical tasks on the Heroku platform using an arbitrary `timedelta` or `crontab` entry. The code is based on a single worker which runs with an integrated `celery beat` scheduler to avoid using a separate process just for scheduling. Redis is used as the broker, based on the `redistogo:nano` plan. -Deployment ----------- +## Deployment - - `heroku create` - - `heroku addons:add redistogo:nano` - - `git push heroku master` - - `heroku ps:scale worker=1` +```bash + $ heroku create + $ heroku addons:add redistogo:nano + $ git push heroku master + $ heroku ps:scale worker=1 + ``` -- cgit v1.3.1