-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
89 lines (89 loc) · 2.69 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
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
{
"name": "Bulkops app",
"description": "Bulk operations app for Jira is a cloud based add-on, which helps in performing bulk operational features not available on Jira cloud.",
"repository": "https://github.com/princenyeche/BOP",
"logo": "https://elfapp.website/bulkops-assets/bulkops_logo.png",
"keywords": ["bulkops", "jira-cloud", "bulk-delete-jira-users", "bulk-create-jira-users"],
"website": "https://elfapp.website",
"success_url": "/signin",
"env": {
"SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"FLASK_APP": {
"description": "Startup file for bulkops",
"value": "startup.py"
},
"SECURITY_SALT": {
"description": "A security key for user authentication on user account.",
"generator": "secret"
},
"QUEUE_TIMEOUT": {
"description": "A time out value to tell the queue system how long it can run for on a task.",
"value": "1h"
},
"MAIL_SERVER": {
"description": "A mail server connection for sending emails, please change value to your own server.",
"value": "smtp.example.com"
},
"MAIL_PORT": {
"description": "A mail server connection port.",
"value": "587"
},
"MAIL_USE_TLS": {
"description": "A secure connection to your mail server. use 1 for TLS enabled, 0 for disabled.",
"value": "1"
},
"MAIL_USERNAME": {
"description": "A username to connect to your email server",
"value": "[email protected]"
},
"MAIL_PASSWORD": {
"description": "A password to validate your connection to your email server",
"value": "apassword"
},
"MAIL_SUFFIX": {
"description": "This refers to the domain name which is used to send email onbehalf, should be the same domain as your mail server",
"value": "example.com"
},
"ADMINS": {
"description": "An automated user account, which bulkops sends notification to and from",
"value": "[email protected]"
},
"CONTACT_EMAIL": {
"description": "The contact address where bulkops delivers any message that uses the contact us button.",
"value": "[email protected]"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"image": "heroku/python",
"addons": [
{
"plan": "heroku-redis",
"as": "REDIS"
},
{
"plan": "heroku-postgresql",
"options": {
"version": "13"
}
}
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-python"
},
{
"url": "heroku/python"
}
],
"scripts": {
"postdeploy": "flask db init; flask db migrate;"
}
}