Heroku deploy button
This commit is contained in:
parent
f9203706f7
commit
e45a284b01
2 changed files with 39 additions and 0 deletions
|
@ -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
35
app.json
Normal 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/"
|
||||
}
|
Loading…
Reference in a new issue