From aa09441014be5129307771b078f6a0ffd917004f Mon Sep 17 00:00:00 2001 From: Prateek Bhatia Date: Mon, 9 Jun 2025 00:18:04 +0530 Subject: [PATCH] Temporarily remove Heroku deployment support Heroku deployment support has been temporarily removed due to recent patches affecting Ultroid deployments. This change helps prevent accidental bans caused by users unknowingly deploying to Heroku. Support will be re-added once a proper solution is implemented. --- README.md | 11 ----------- app.json | 56 ------------------------------------------------------ heroku.yml | 3 --- 3 files changed, 70 deletions(-) delete mode 100644 app.json delete mode 100644 heroku.yml diff --git a/README.md b/README.md index 53d4542..a13fe1a 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,6 @@ ---- # Deploy -- [Heroku](#deploy-to-heroku) - [Okteto](#deploy-to-okteto) - [Local Machine](#deploy-locally) @@ -36,16 +35,6 @@ - Tutorial to get Redis URL and password - [here.](./resources/extras/redistut.md) --- -## Deploy to Heroku -Get the [Necessary Variables](#Necessary-Variables) and then click the button below! - -Deploy To Heroku -

-
- - Deploy - -

## Deploy to Okteto Get the [Necessary Variables](#Necessary-Variables) and then click the button below! diff --git a/app.json b/app.json deleted file mode 100644 index d192bad..0000000 --- a/app.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "Ultroid UserBot", - "description": "Pluggable telegram userbot, made in python using Telethon.", - "logo": "https://graph.org/file/031957757a4f6a5191040.jpg", - "keywords": [ - "Telethon", - "telegram", - "userbot", - "python", - "ultroid" - ], - "repository": "https://github.com/TeamUltroid/Ultroid", - "website": "https://ultroid.tech", - "success_url": "https://t.me/TeamUltroid", - "stack": "container", - "env": { - "API_ID": { - "description": "You api id, from my.telegram.org or @ScrapperRoBot.", - "value": "", - "required": false - }, - "API_HASH": { - "description": "You api hash, from my.telegram.org or @ScrapperRoBot.", - "value": "", - "required": false - }, - "SESSION": { - "description": "Session String (telethon or pyrogram) for your telegram user account. The userbot will NOT work without a session string!!", - "value": "" - }, - "REDIS_URI": { - "description": "Redis endpoint URL, from redislabs.com", - "value": "" - }, - "REDIS_PASSWORD": { - "description": "Redis endpoint password, from redislabs.com", - "value": "" - }, - "HEROKU_API": { - "description": "Heroku API token. Mandatory for Heroku Deploy...", - "value": "", - "required": false - }, - "HEROKU_APP_NAME": { - "description": "Name of your Heroku app, given in the first blank on this page. To be added if deploying to heroku ONLY.", - "value": "", - "required": false - } - }, - "formation": { - "ultroid": { - "quantity": 1, - "size": "eco" - } - } -} diff --git a/heroku.yml b/heroku.yml deleted file mode 100644 index 06f0fb7..0000000 --- a/heroku.yml +++ /dev/null @@ -1,3 +0,0 @@ -build: - docker: - ultroid: Dockerfile