forked from monicahq/monica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
62 lines (62 loc) · 1.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
{
"name": "Monica",
"description": "Personal Relationship Manager - a new kind of CRM to manage your friends and family.",
"repository": "https://github.com/monicahq/monica",
"logo": "https://raw.githubusercontent.com/monicahq/monica/master/public/img/monica_60.png",
"keywords": [
"CRM",
"family",
"friends",
"relationship",
"PRM"
],
"addons": [
{
"plan": "jawsdb:kitefin"
},
{
"plan": "scheduler:standard"
}
],
"scripts": {
"postdeploy": "php artisan setup:production --force -vvv"
},
"env": {
"APP_KEY": {
"description": "Please change this to a 32-character string. For example run `pwgen -s 32 1` and copy/paste the value.",
"value": "change-me-to-a-random-string----"
},
"APP_ENV": {
"description": "Use monica in 'production' mode, or set it to 'local' if you want to install Monica as a development version.",
"value": "production"
},
"APP_DISABLE_SIGNUP": {
"description": "Disable user signup.",
"value": "false"
},
"APP_DEBUG": {
"description": "Enables or disables debug mode.",
"value": "false"
},
"APP_EMAIL_NEW_USERS_NOTIFICATION": {
"description": "",
"value": "[email protected]"
},
"MAIL_FROM_ADDRESS": {
"description": "",
"value": "[email protected]"
},
"MAIL_FROM_NAME": {
"description": "",
"value": "Bob Smith"
},
"DB_CONNECTION": {
"description": "Tells the application to use Heroku's database connection.",
"value": "heroku"
},
"HEROKU": {
"description": "Tells the application this application is hosted on Heroku.",
"value": "true"
}
}
}