Added Heroku app.json
This commit is contained in:
parent
e12d26562d
commit
59029e48ad
39
app.json
Normal file
39
app.json
Normal file
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in a new issue