From 93baf42ad97078aaa21dc88eaa737af659e648cc Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Mon, 13 Apr 2015 16:41:52 +0100 Subject: [PATCH] Add a Heroku app.json --- app.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 app.json diff --git a/app.json b/app.json new file mode 100644 index 0000000..a61ee96 --- /dev/null +++ b/app.json @@ -0,0 +1,17 @@ +{ + "name": "evestandings", + "description": "A corporation/alliance standings listing webapp for EVE Online", + "repository": "https://github.com/nikdoof/evestandings", + "keywords": ["python", "eve online"], + "env": { + "API_KEY_ID": { + "description": "KeyID of a corporation Director API Key.", + "required": true + }, + "API_KEY_VCODE": { + "description": "vCode of a corporation Director API Key.", + "value": "next_action", + "required": false + } + } +}