From c5c9656a4da3535e81d51a271aba12bcfc38e76b Mon Sep 17 00:00:00 2001 From: Yu-Hung Ou Date: Mon, 12 Mar 2018 21:44:15 +1100 Subject: [PATCH] added support for one click deploy to Heroku --- README.md | 4 ++++ app.json | 12 ++++++++++++ static.json | 6 ++++++ 3 files changed, 22 insertions(+) create mode 100644 app.json create mode 100644 static.json diff --git a/README.md b/README.md index e3e1cb0..f50c83f 100644 --- a/README.md +++ b/README.md @@ -86,6 +86,10 @@ docker run --restart=always \ -d yourname/webui-aria2 ``` +Deploy to Heroku +============== +[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy) + Support ======= For any support, feature request and bug report add an issue in the github project. [link](https://github.com/ziahamza/webui-aria2/issues) diff --git a/app.json b/app.json new file mode 100644 index 0000000..06b3410 --- /dev/null +++ b/app.json @@ -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" + } + ] +} diff --git a/static.json b/static.json new file mode 100644 index 0000000..5e8935e --- /dev/null +++ b/static.json @@ -0,0 +1,6 @@ +{ + "root": "./", + "routes": { + "/**": "index.html" + } +}