aboutsummaryrefslogtreecommitdiff
path: root/app.json
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-04-07 13:21:08 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-04-07 13:21:08 +0200
commit9935e40ffa9d4c5ef90f9ebb0a0b85cc15de48de (patch)
tree17006ed5f9e9454588326488acd2a5911f2c337c /app.json
parentno more submodule for bootstrap (diff)
downloadnewspipe-9935e40ffa9d4c5ef90f9ebb0a0b85cc15de48de.tar.gz
newspipe-9935e40ffa9d4c5ef90f9ebb0a0b85cc15de48de.tar.bz2
newspipe-9935e40ffa9d4c5ef90f9ebb0a0b85cc15de48de.zip
PLATFORM_URL is not required.
Diffstat (limited to 'app.json')
-rw-r--r--app.json10
1 files changed, 5 insertions, 5 deletions
diff --git a/app.json b/app.json
index 89d39bb5..a499e325 100644
--- a/app.json
+++ b/app.json
@@ -28,11 +28,6 @@
}
],
"env": {
- "PLATFORM_URL": {
- "description": "Address of your instance (for example: https://YOUR-APPLICATION-NAME.herokuapp.com/)",
- "required": true,
- "value": ""
- },
"ADMIN_EMAIL": {
"description": "Your email address for the authentication to the platform.",
"required": true,
@@ -53,6 +48,11 @@
"required": true,
"value": "false"
},
+ "PLATFORM_URL": {
+ "description": "Address of your instance (for example: https://YOUR-APPLICATION-NAME.herokuapp.com/)",
+ "required": false,
+ "value": ""
+ },
"SECURITY_PASSWORD_SALT": {
"description": "A secret to confirm user account with a link in an email.",
"required": true,
bgstack15