From 59029e48ad37fa5586667ade31005e5c0d6e3d13 Mon Sep 17 00:00:00 2001 From: Pablo Ferreiro Date: Sun, 5 Jun 2022 17:34:18 +0200 Subject: [PATCH] Added Heroku app.json --- app.json | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 app.json diff --git a/app.json b/app.json new file mode 100644 index 0000000..5e9b46f --- /dev/null +++ b/app.json @@ -0,0 +1,39 @@ +{ + "name": "ProxiTok", + "description": "Open source alternative frontend for TikTok", + "keywords": [ + "php", + "tiktok", + "alternative-frontends" + ], + "website": "https://github.com/pablouser1/ProxiTok", + "repository": "https://github.com/pablouser1/ProxiTok", + "env": { + "APP_URL": { + "description": "Your instance url (example: https://proxitok.herokuapp.com)" + }, + "API_CACHE": { + "description": "Cache system in use", + "value": "redis" + }, + "LATTE_CACHE": { + "description": "Latte cache path", + "value": "/tmp/latte" + }, + "API_SIGNER_URL": { + "description": "Remote signer url", + "value": "https://signtok.vercel.app/api" + } + }, + "addons": [ + { + "plan": "heroku-redis:hobby-dev", + "as": "REDIS" + } + ], + "buildpacks": [ + { + "url": "heroku/php" + } + ] +}