-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
30 lines (30 loc) · 857 Bytes
/
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
{
"name": "FriendsRadio",
"description": "📻 Stream and share musics with friends",
"repository": "https://github.com/xouabita/friends-radio",
"keywords": ["graphql", "express", "node", "music", "streaming", "friends"],
"env": {
"MASTER_KEY": {
"description": "The secret key of your application, used to sign jwt token",
"generator": "secret"
},
"RAZZLE_FACEBOOK_APP_ID": {
"description": "Facebook App Id (https://developers.facebook.com/docs/apps/register)",
"required": true
},
"FACEBOOK_APP_SECRET": {
"description": "Facebook App Secret",
"required": true
},
"NODE_ENV": {
"value": "production"
},
"NPM_CONFIG_PRODUCTION": {
"value": "false"
}
},
"addons": ["heroku-postgresql"],
"scripts": {
"postdeploy": "yarn db -- migrate:latest"
}
}