From 3ac0c9346cc0545bfad48eb8efa581669635ea6f Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Fri, 5 Jan 2024 18:24:40 +0100 Subject: [PATCH] Removing heroku support as its no longer free --- Procfile | 1 - app.json | 21 --------------------- heroku.yml | 2 -- 3 files changed, 24 deletions(-) delete mode 100644 Procfile delete mode 100644 app.json delete mode 100644 heroku.yml diff --git a/Procfile b/Procfile deleted file mode 100644 index 116f3f1ae..000000000 --- a/Procfile +++ /dev/null @@ -1 +0,0 @@ -web: python3 ./changedetection.py -C -d ./datastore -p $PORT diff --git a/app.json b/app.json deleted file mode 100644 index a9249e88c..000000000 --- a/app.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "name": "ChangeDetection.io", - "description": "The best and simplest self-hosted open source website change detection monitoring and notification service.", - "keywords": [ - "changedetection", - "website monitoring" - ], - "repository": "https://github.com/dgtlmoon/changedetection.io", - "success_url": "/", - "scripts": { - }, - "env": { - }, - "formation": { - "web": { - "quantity": 1, - "size": "free" - } - }, - "image": "heroku/python" -} diff --git a/heroku.yml b/heroku.yml deleted file mode 100644 index c7790e12c..000000000 --- a/heroku.yml +++ /dev/null @@ -1,2 +0,0 @@ -run: - changedetection: python3 ./changedetection.py -C -d ./datastore -p $PORT