Merge pull request #446 from rayou/add-deploy-to-heroku-button

Added "Deploy to Heroku" button
This commit is contained in:
hamza zia 2018-03-12 16:29:40 +05:00 committed by GitHub
commit 595f4655b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 0 deletions

View File

@ -86,6 +86,10 @@ docker run --restart=always \
-d yourname/webui-aria2 -d yourname/webui-aria2
``` ```
Deploy to Heroku
==============
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy)
Support Support
======= =======
For any support, feature request and bug report add an issue in the github project. [link](https://github.com/ziahamza/webui-aria2/issues) For any support, feature request and bug report add an issue in the github project. [link](https://github.com/ziahamza/webui-aria2/issues)

12
app.json Normal file
View File

@ -0,0 +1,12 @@
{
"name": "webui-aria2",
"description":
"This project is to create the worlds best and hottest interface to interact with aria2.",
"repository": "https://github.com/ziahamza/webui-aria2",
"keywords": ["AngularJS", "aria2", "static"],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-static"
}
]
}

6
static.json Normal file
View File

@ -0,0 +1,6 @@
{
"root": "./",
"routes": {
"/**": "index.html"
}
}