aboutsummaryrefslogtreecommitdiff
path: root/app.json
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-04-07 21:33:47 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-04-07 21:33:47 +0200
commitfe16af776315e079a7b8cc129836a1969dd28237 (patch)
treed98eae010ffb1959fbca3aa0ec6b7ff05c9eb4eb /app.json
parentMerge branch 'master' into bookmark (diff)
downloadnewspipe-fe16af776315e079a7b8cc129836a1969dd28237.tar.gz
newspipe-fe16af776315e079a7b8cc129836a1969dd28237.tar.bz2
newspipe-fe16af776315e079a7b8cc129836a1969dd28237.zip
Updated app.json
Diffstat (limited to 'app.json')
-rw-r--r--app.json18
1 files changed, 9 insertions, 9 deletions
diff --git a/app.json b/app.json
index a499e325..cce62d43 100644
--- a/app.json
+++ b/app.json
@@ -28,8 +28,13 @@
}
],
"env": {
+ "PLATFORM_URL": {
+ "description": "Address of your Newspipe instance (for example: https://YOUR-APPLICATION-NAME.herokuapp.com/)",
+ "required": true,
+ "value": ""
+ },
"ADMIN_EMAIL": {
- "description": "Your email address for the authentication to the platform.",
+ "description": "Your email address for the authentication to the platform as an administrator.",
"required": true,
"value": ""
},
@@ -39,22 +44,17 @@
"value": ""
},
"SECRET_KEY": {
- "description": "A secret token only you know in order to use sessions.",
+ "description": "A secret token in order to use sessions.",
"required": true,
"value": "iYtWRvAl!S7+Gz8kabK3@CBvr"
},
"SELF_REGISTRATION": {
- "description": "Users are able to create new account.",
+ "description": "If set to True, users will be able to create new accounts.",
"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.",
+ "description": "A secret to confirm account creation with a link in an email.",
"required": true,
"value": "^HEpK@L&cP5dMR^kiz8IIZj8q"
},
bgstack15