-
Notifications
You must be signed in to change notification settings - Fork 12
/
app.json
65 lines (65 loc) · 1.17 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
{
"addons": [
"heroku-postgresql"
],
"buildpacks": [],
"env": {
"SECRET_KEY": {
"required": true
},
"NPM_CONFIG_PRODUCTION": {
"required": true
},
"GOOGLE_CLIENT_ID": {
"required": true
},
"GOOGLE_CLIENT_SECRET": {
"required": true
},
"GOOGLE_CALLBACK_URL": {
"required": true
},
"FACEBOOK_CLIENT_ID": {
"required": true
},
"FACEBOOK_CLIENT_SECRET": {
"required": true
},
"FACEBOOK_CALLBACK_URL": {
"required": true
},
"FRONTEND_URL": {
"required": true
},
"SENDGRID_API_KEY": {
"required": true
},
"PUSHER_APP_ID": {
"required": true
},
"PUSHER_APP_KEY": {
"required": true
},
"PUSHER_APP_SECRET": {
"required": true
},
"PUSHER_APP_CLUSTER": {
"required": true
},
"FRONTEND_URL_ARTICLES": {
"required": true
},
"FRONTEND_URL_EMAIL_VERIFICATION": {
"required":true
},
"APP_LOGO": {
"required": true
}
},
"formation": {},
"name": "mazus-ah-backend",
"scripts": {
"postdeploy": "npx sequelize-cli db:seed:all"
},
"stack": "heroku-18"
}