forked from chiefonboarding/ChiefOnboarding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
53 lines (52 loc) · 1.98 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
{
"name": "ChiefOnboarding",
"description": "Free and open-source employee onboarding platform. Onboard new hires through Slack or the web portal.",
"repository": "https://github.com/chiefonboarding/ChiefOnboarding/tree/deploy",
"logo": "https://avatars.githubusercontent.com/u/29075722",
"keywords": ["python", "vue", "django", "onboarding", "slack"],
"website": "https://chiefonboarding.com/",
"formation": {
"web": {
"quantity": 1,
"size": "hobby"
},
"worker": {
"quantity": 1,
"size": "hobby"
}
},
"image": "heroku/python",
"addons": [
"heroku-postgresql"
],
"env": {
"ACCOUNT_EMAIL": {
"description": "This is your email address for the first admin account. Don't worry, you can add new admin accounts and remove this one.",
"required": true
},
"ACCOUNT_PASSWORD": {
"description": "Auto generated password for your admin account. After deployment, please check the environment variables to see this password.",
"generator": "secret"
},
"SECRET_KEY": {
"description": "A random secret key for Django",
"generator": "secret"
},
"SSL_REDIRECT": {
"description": "Automatically redirect to HTTPS for a secure connection",
"value": "True"
},
"BASE_URL": {
"description": "This is the base url of your application. This can be a heroku url (xxxx.herokuapp.com - which matches your domain for this app) or your own (sub) domain. Format: https://test.chiefonboarding.com",
"required": true
},
"ALLOWED_HOSTS": {
"description": "This is the base url of your application. This can be a heroku url (xxxx.herokuapp.com - which matches your domain for this app) or your own (sub) domain. Format: test.chiefonboarding.com",
"required": true
},
"DEFAULT_FROM_EMAIL": {
"description": "The default email to send emails from. Example: [email protected] or Onboarding <[email protected]>",
"required": true
}
}
}