diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-04-07 21:33:47 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-04-07 21:33:47 +0200 |
commit | fe16af776315e079a7b8cc129836a1969dd28237 (patch) | |
tree | d98eae010ffb1959fbca3aa0ec6b7ff05c9eb4eb | |
parent | Merge branch 'master' into bookmark (diff) | |
download | newspipe-fe16af776315e079a7b8cc129836a1969dd28237.tar.gz newspipe-fe16af776315e079a7b8cc129836a1969dd28237.tar.bz2 newspipe-fe16af776315e079a7b8cc129836a1969dd28237.zip |
Updated app.json
-rw-r--r-- | app.json | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -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" }, |