From 98d94d0c91a3b944754201298629d1b7d2d8ac5a Mon Sep 17 00:00:00 2001 From: Kohei Watanabe Date: Sat, 16 May 2020 22:24:33 +0900 Subject: [PATCH] create app.json for Heroku --- app.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 app.json diff --git a/app.json b/app.json new file mode 100644 index 0000000..2a92fd9 --- /dev/null +++ b/app.json @@ -0,0 +1,12 @@ +{ + "env": { + "HTTP_USERNAME": { + "description": "User name for testing the /basic-auth endpoint", + "value": "" + }, + "HTTP_PASSWORD": { + "description": "Password for testing the /basic-auth endpoint", + "value": "" + } + } +}