From 560fed4f495cbe5e99daa6c58e25b2b873ec4719 Mon Sep 17 00:00:00 2001 From: pictuga Date: Sun, 21 Nov 2021 17:34:21 +0100 Subject: [PATCH] Basic Heroku --- README.md | 4 ++++ app.json | 1 + heroku.yml | 9 +++++++++ 3 files changed, 14 insertions(+) create mode 100644 app.json create mode 100644 heroku.yml diff --git a/README.md b/README.md index 5ad1035..4b72a00 100644 --- a/README.md +++ b/README.md @@ -92,6 +92,10 @@ Then execute docker-compose build --no-cache --pull ``` +Using Heroku free tier: + +[Deploy to Heroku](https://heroku.com/deploy?template=https://github.com/pictuga/morss) + ## Run morss will auto-detect what "mode" to use. diff --git a/app.json b/app.json new file mode 100644 index 0000000..7d2d73b --- /dev/null +++ b/app.json @@ -0,0 +1 @@ +{"stack": "container"} diff --git a/heroku.yml b/heroku.yml new file mode 100644 index 0000000..07c44aa --- /dev/null +++ b/heroku.yml @@ -0,0 +1,9 @@ +setup: + config: + DEBUG: 1 + CACHE: diskcache + CACHE_SIZE: 1073741824 + +build: + docker: + worker: Dockerfile