Heroku deploy button

This commit is contained in:
Pierre Rudloff 2017-05-15 17:33:25 +02:00
parent f9203706f7
commit e45a284b01
2 changed files with 39 additions and 0 deletions

View File

@ -33,6 +33,10 @@ chmod 777 templates_c/
If your web server is Apache, you need to set the `AllowOverride` setting to `All` or `FileInfo`.
### On Heroku
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy)
#### Update
When updating from Git, you need to run npm and Composer again:

35
app.json Normal file
View File

@ -0,0 +1,35 @@
{
"name": "AllTube Download",
"description": "HTML GUI for youtube-dl",
"repository": "https://github.com/Rudloff/alltube.git",
"logo": "https://alltubedownload.net/img/logo.png",
"keywords": [
"alltube",
"download",
"video",
"youtube",
"php"
],
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/python"
},
{
"url": "heroku/php"
}
],
"env": {
"CONVERT": {
"description": "Enable audio conversion",
"value": "true"
},
"PYTHON": {
"description": "Path to python binary",
"value": "/app/.heroku/python/bin/python"
}
},
"website": "https://alltubedownload.net/"
}