forked from pglombardo/PasswordPusher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
64 lines (64 loc) · 2.36 KB
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "PasswordPusher",
"description": "An application to communicate passwords over the web. Passwords expire after a certain number of views and/or time has passed.",
"repository": "https://github.com/havedill/PasswordPusher",
"logo": "https://github.com/havedill/PasswordPusher/blob/master/app/assets/images/pwpush_logo.png?raw=true",
"keywords": ["password", "security", "expire"],
"addons": [
"heroku-postgresql"
],
"scripts": {
"postdeploy": "bundle exec rake db:setup"
},
"env": {
"BUNDLE_WITHOUT": "development:test:private",
"CRYPT_KEY": {
"description": "CRYPT key",
"generator": "secret"
},
"CRYPT_SALT": {
"description": "CRYPT salt",
"generator": "secret"
},
"WEB_CONCURRENCY": {
"description": "The number of processes to run.",
"value": "3"
},
"PAYLOAD_INITIAL_TEXT": {
"description": "The initial text for the input field",
"value": "Enter the Password to be Shared"
},
"EXPIRE_AFTER_DAYS_DEFAULT": {
"description": "Default value for expire after days",
"value": "7"
},
"EXPIRE_AFTER_DAYS_MIN": {
"description": "Expire after days minimum value",
"value": "1"
},
"EXPIRE_AFTER_DAYS_MAX": {
"description": "Expire after days maximum value",
"value": "30"
},
"EXPIRE_AFTER_VIEWS_DEFAULT": {
"description": "Expire after views default value",
"value": "10"
},
"EXPIRE_AFTER_VIEWS_MIN": {
"description": "Expire after views minimum value",
"value": "1"
},
"EXPIRE_AFTER_VIEWS_MAX": {
"description": "Expire after views maximum value",
"value": "20"
},
"DELETABLE_BY_VIEWER_PASSWORDS": {
"description": "When true, passwords will have a link to optionally delete the password being viewed. When pushing a new password, this option will also add a checkbox to conditionally enable/disable this feature on a per-password basis.",
"value": "true"
},
"DELETABLE_BY_VIEWER_DEFAULT": {
"description": "When the option DELETABLE_BY_VIEWER_PASSWORDS is set to true, this option does two things: 1. Sets the default check state for the \"Allow viewers to optionally delete password before expiration\" checkbox. 2. Sets the default value for newly pushed passwords if unspecified (such as with a json request)",
"value": "true"
}
}
}