-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
99 lines (99 loc) · 3.64 KB
/
app.json
File metadata and controls
99 lines (99 loc) · 3.64 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "PasswordPusher",
"description": "An application to communicate sensitive information over the web. Secret links expire after a certain number of views and/or time has passed. Supports passwords, files, URLs, and QR codes with full audit logging.",
"repository": "https://github.com/pglombardo/PasswordPusher",
"logo": "https://pwpush.fra1.cdn.digitaloceanspaces.com/branding/logos/horizontal-logo-small.png",
"keywords": ["password", "security", "expire", "file-sharing", "url-sharing", "qr-code"],
"addons": [
"heroku-postgresql"
],
"scripts": {
"postdeploy": "bundle exec rails db:migrate"
},
"env": {
"BUNDLE_WITHOUT": {
"description": "Bundler groups to exclude",
"value": "development:test"
},
"PWPUSH_MASTER_KEY": {
"description": "Application Encryption Key - Required for encrypting sensitive data. Generate with: rails runner 'puts Lockbox.generate_key'",
"generator": "secret"
},
"SECRET_KEY_BASE": {
"description": "Rails secret key base for session encryption. Generate with: rails secret",
"generator": "secret"
},
"WEB_CONCURRENCY": {
"description": "The number of Puma processes to run",
"value": "3"
},
"PWP__PW__EXPIRE_AFTER_DAYS_DEFAULT": {
"description": "Default value for password push expiration (days)",
"value": "7"
},
"PWP__PW__EXPIRE_AFTER_DAYS_MIN": {
"description": "Minimum value for password push expiration (days)",
"value": "1"
},
"PWP__PW__EXPIRE_AFTER_DAYS_MAX": {
"description": "Maximum value for password push expiration (days)",
"value": "90"
},
"PWP__PW__EXPIRE_AFTER_VIEWS_DEFAULT": {
"description": "Default value for password push expiration (views)",
"value": "5"
},
"PWP__PW__EXPIRE_AFTER_VIEWS_MIN": {
"description": "Minimum value for password push expiration (views)",
"value": "1"
},
"PWP__PW__EXPIRE_AFTER_VIEWS_MAX": {
"description": "Maximum value for password push expiration (views)",
"value": "100"
},
"PWP__PW__ENABLE_DELETABLE_PUSHES": {
"description": "Enable the ability for viewers to delete password pushes before expiration",
"value": "true"
},
"PWP__PW__DELETABLE_PUSHES_DEFAULT": {
"description": "Default value for deletable pushes checkbox and JSON API",
"value": "true"
},
"PWP__PW__ENABLE_RETRIEVAL_STEP": {
"description": "Enable the 1-click retrieval step feature for password pushes",
"value": "true"
},
"PWP__PW__RETRIEVAL_STEP_DEFAULT": {
"description": "Default value for the 1-click retrieval step option",
"value": "false"
},
"PWP__ENABLE_LOGINS": {
"description": "Enable user account logins (requires SMTP configuration)",
"value": "false"
},
"PWP__ENABLE_FILE_PUSHES": {
"description": "Enable file upload pushes (requires logins and storage configuration)",
"value": "false"
},
"PWP__ENABLE_URL_PUSHES": {
"description": "Enable URL-based pushes (requires logins)",
"value": "false"
},
"PWP__ENABLE_QR_PUSHES": {
"description": "Enable QR code pushes (requires logins)",
"value": "false"
},
"PWP__HOST_DOMAIN": {
"description": "The domain where this instance is hosted (without protocol)",
"required": false
},
"PWP__HOST_PROTOCOL": {
"description": "The protocol to reach the domain (http or https)",
"value": "https"
},
"PWP__THEME": {
"description": "Bootswatch theme name (e.g., default, darkly, flatly, cosmo). See https://docs.pwpush.com/docs/themes/",
"value": "default"
}
}
}